You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by pl...@apache.org on 2015/11/05 06:54:05 UTC

incubator-tinkerpop git commit: Make test execution order-independent to stabilize builds. Invoking CTR.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master db11a1e73 -> 71e72db4b


Make test execution order-independent to stabilize builds. Invoking CTR.

Added @Ignore on one test, which is waiting on a Groovy release containing fix
for GROOVY-7649.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/71e72db4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/71e72db4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/71e72db4

Branch: refs/heads/master
Commit: 71e72db4b018cdb61b5675a656f2bd1996efc986
Parents: db11a1e
Author: Jason Plurad <pl...@apache.org>
Authored: Thu Nov 5 00:48:11 2015 -0500
Committer: Jason Plurad <pl...@apache.org>
Committed: Thu Nov 5 00:51:40 2015 -0500

----------------------------------------------------------------------
 .../tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/71e72db4/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java
----------------------------------------------------------------------
diff --git a/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java b/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java
index 95e4c9c..7b1ddc1 100644
--- a/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java
+++ b/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/util/DependencyGrabberTest.java
@@ -23,6 +23,7 @@ import java.io.File;
 import org.apache.commons.io.FileUtils;
 import org.apache.tinkerpop.gremlin.groovy.plugin.Artifact;
 import org.junit.AfterClass;
+import org.junit.Ignore;
 import org.junit.Test;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
@@ -41,7 +42,7 @@ public class DependencyGrabberTest {
     }
 
     @Test
-    public void should0_InstallAndUninstallDependencies() {
+    public void shouldInstallAndUninstallDependencies() {
         final String pkg = "org.apache.tinkerpop";
         final String name = "tinkergraph-gremlin";
         final String ver = "3.0.1-incubating";
@@ -58,7 +59,7 @@ public class DependencyGrabberTest {
     }
 
     @Test(expected=IllegalStateException.class)
-    public void should1_ThrowIllegalStateException() {
+    public void shouldThrowIllegalStateException() {
         final String pkg = "org.apache.tinkerpop";
         final String name = "gremlin-groovy";
         final String ver = "3.0.1-incubating";
@@ -81,7 +82,8 @@ public class DependencyGrabberTest {
     }
 
     @Test(expected=RuntimeException.class)
-    public void should2_ThrowRuntimeException() {
+    @Ignore
+    public void shouldThrowRuntimeException() {
         final String pkg = "org.apache.tinkerpop";
         final String name = "gremlin-bogus";
         final String ver = "3.0.1-incubating";