You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by dh...@apache.org on 2021/05/11 04:52:43 UTC

[geode] branch develop updated: GEODE-9254: Make repeat test tasks honor excludes (#6459)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new a9ee444  GEODE-9254: Make repeat test tasks honor excludes (#6459)
a9ee444 is described below

commit a9ee44493aa584c6142141ce0cbd8d466ba2f2e4
Author: Dale Emery <de...@vmware.com>
AuthorDate: Mon May 10 21:51:16 2021 -0700

    GEODE-9254: Make repeat test tasks honor excludes (#6459)
    
    Each repeat test task now honors the excludes defined in the underlying
    test task.
    
    Before this change, repeat test tasks ignored these excludes, causing
    them to run tests that the underlying test tasks would not.
---
 gradle/test.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gradle/test.gradle b/gradle/test.gradle
index d0ea9f4..53d64e7 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -230,6 +230,11 @@ gradle.taskGraph.whenReady({ graph ->
       }
     }
   }
+  repeatAcceptanceTest.exclude acceptanceTest.excludes
+  repeatDistributedTest.exclude distributedTest.excludes
+  repeatIntegrationTest.exclude integrationTest.excludes
+  repeatUnitTest.exclude test.excludes
+  repeatUpgradeTest.exclude upgradeTest.excludes
 })
 
 acceptanceTest {