You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by mw...@apache.org on 2020/03/03 08:54:19 UTC

[beam] branch BEAM-8328-isolate-community-metrics-tests created (now fe15d36)

This is an automated email from the ASF dual-hosted git repository.

mwalenia pushed a change to branch BEAM-8328-isolate-community-metrics-tests
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at fe15d36  [BEAM-8328] Disable community metrics integration test in 'test' task

This branch includes the following new commits:

     new fe15d36  [BEAM-8328] Disable community metrics integration test in 'test' task

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: [BEAM-8328] Disable community metrics integration test in 'test' task

Posted by mw...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mwalenia pushed a commit to branch BEAM-8328-isolate-community-metrics-tests
in repository https://gitbox.apache.org/repos/asf/beam.git

commit fe15d36a89cf7310c9a7f10fdbdc0ffa3974a138
Author: Michal Walenia <mi...@polidea.com>
AuthorDate: Tue Mar 3 09:53:44 2020 +0100

    [BEAM-8328] Disable community metrics integration test in 'test' task
---
 .test-infra/metrics/build.gradle | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.test-infra/metrics/build.gradle b/.test-infra/metrics/build.gradle
index bdcc040..6377349 100644
--- a/.test-infra/metrics/build.gradle
+++ b/.test-infra/metrics/build.gradle
@@ -39,4 +39,10 @@ dockerCompose.isRequiredBy(testMetricsStack)
 
 task preCommit { dependsOn testMetricsStack }
 
-task checkProber { dependsOn test }
+task checkProber(type:Test) {
+  include "**/ProberTests.class"
+}
+
+project.test {
+  exclude "**/ProberTests.class"
+}