You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/08/08 19:26:37 UTC

[geode] branch develop updated (895fdce -> c90f2e4)

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

upthewaterspout pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from 895fdce  GEODE-5538 create examples pipeline
     new 11cf1e1  GEODE-5387: Adding a flag to ignore failures for no tests
     new c90f2e4  GEODE-5387: Fixing repeatTest for the geode-assembly project

The 2 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.


Summary of changes:
 geode-assembly/build.gradle | 1 +
 gradle/test.gradle          | 6 ++++++
 2 files changed, 7 insertions(+)


[geode] 02/02: GEODE-5387: Fixing repeatTest for the geode-assembly project

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

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit c90f2e4cb870dd9ef4c8b30fd0c3ab5e188e519a
Author: Dan Smith <up...@apache.org>
AuthorDate: Tue Aug 7 15:36:44 2018 -0700

    GEODE-5387: Fixing repeatTest for the geode-assembly project
    
    geode-assembly test targets need to depend on the installed product
---
 geode-assembly/build.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-assembly/build.gradle b/geode-assembly/build.gradle
index 7179312..6c7dc88 100755
--- a/geode-assembly/build.gradle
+++ b/geode-assembly/build.gradle
@@ -475,6 +475,7 @@ upgradeTest dependOnInstalledProduct
 integrationTest dependOnInstalledProduct
 uiTest dependOnInstalledProduct
 flakyTest dependOnInstalledProduct
+repeatTest dependOnInstalledProduct
 
 // Make build final task to generate all test and product resources
 build.dependsOn installDist


[geode] 01/02: GEODE-5387: Adding a flag to ignore failures for no tests

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

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 11cf1e17a00b26fb89860af1d77112195fc964a1
Author: Dan Smith <up...@apache.org>
AuthorDate: Tue Aug 7 14:54:50 2018 -0700

    GEODE-5387: Adding a flag to ignore failures for no tests
    
    Adding a flag to the repeatTest task to allow it to pass even if there
    are no valid tests.
---
 gradle/test.gradle | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gradle/test.gradle b/gradle/test.gradle
index a92c29d..27caa89 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -200,6 +200,12 @@ subprojects {
     testClassesDirs += project.sourceSets.distributedTest.output.classesDirs
     classpath += project.sourceSets.integrationTest.runtimeClasspath
     testClassesDirs += project.sourceSets.integrationTest.output.classesDirs
+
+    if(project.hasProperty("failOnNoMatchingTests")) {
+      filter {
+        setFailOnNoMatchingTests(Boolean.valueOf(project.failOnNoMatchingTests))
+      }
+    }
   }
 
   task flakyTest(type:Test) {