This is an automated email from the ASF dual-hosted git repository. jbarrett pushed a commit to branch feature/GEODE-5363 in repository https://gitbox.apache.org/repos/asf/geode.git
commit bd5cedab7b8d368d528c779b80ba329488b43a40 Author: Jacob Barrett <[email protected]> AuthorDate: Wed Jul 11 08:12:44 2018 -0700 GEODE-5363: Remove category filter. --- gradle/test.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gradle/test.gradle b/gradle/test.gradle index 61459ee..7f91df9 100644 --- a/gradle/test.gradle +++ b/gradle/test.gradle @@ -145,16 +145,12 @@ subprojects { testClassesDirs = sourceSets.acceptanceTest.output.classesDirs classpath = sourceSets.acceptanceTest.runtimeClasspath - - useJUnit { - includeCategories 'org.apache.geode.test.junit.categories.AcceptanceTest' - } - forkEvery 1 outputs.upToDateWhen{false} } + task flakyTest(type:Test) { useJUnit { includeCategories 'org.apache.geode.test.junit.categories.FlakyTest'
