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 836dccd199b6b462bd0cb3765d54176dfc5b3c6c
Author: Jacob Barrett <jbarr...@pivotal.io>
AuthorDate: Mon Jul 9 16:47:13 2018 -0700

    GEODE-5363: Ignore inner classes.
---
 geode-junit/build.gradle                                             | 5 +++++
 .../geode/test/junit/rules/ExecutorServiceRuleIntegrationTest.java   | 1 +
 2 files changed, 6 insertions(+)

diff --git a/geode-junit/build.gradle b/geode-junit/build.gradle
index 560cb42..e3c2268 100755
--- a/geode-junit/build.gradle
+++ b/geode-junit/build.gradle
@@ -58,3 +58,8 @@ test {
   // Some tests have inner tests that should be ignored
   exclude "**/*\$*.class"
 }
+
+integrationTest {
+  // Some tests have inner tests that should be ignored
+  exclude "**/*\$*.class"
+}
diff --git 
a/geode-junit/src/integrationTest/java/org/apache/geode/test/junit/rules/ExecutorServiceRuleIntegrationTest.java
 
b/geode-junit/src/integrationTest/java/org/apache/geode/test/junit/rules/ExecutorServiceRuleIntegrationTest.java
index 5458d15..d13d4c2 100644
--- 
a/geode-junit/src/integrationTest/java/org/apache/geode/test/junit/rules/ExecutorServiceRuleIntegrationTest.java
+++ 
b/geode-junit/src/integrationTest/java/org/apache/geode/test/junit/rules/ExecutorServiceRuleIntegrationTest.java
@@ -25,6 +25,7 @@ import java.util.concurrent.ExecutorService;
 
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.runner.Result;

Reply via email to