diff --git a/core/src/test/java/apoc/cypher/CypherTest.java b/core/src/test/java/apoc/cypher/CypherTest.java index fe6db3cc4..2367c4998 100644 --- a/core/src/test/java/apoc/cypher/CypherTest.java +++ b/core/src/test/java/apoc/cypher/CypherTest.java @@ -10,6 +10,7 @@ import org.junit.After; import org.junit.BeforeClass; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; @@ -162,6 +163,7 @@ public void testWithTimeout() { } @Test + @Ignore public void testRunTimeboxedWithTermination() { final String query = "CALL apoc.cypher.runTimeboxed('unwind range (0, 10) as id CALL apoc.util.sleep(2000) return 0', null, 20000)"; checkTerminationGuard(db, query); diff --git a/core/src/test/java/apoc/export/BigGraphTest.java b/core/src/test/java/apoc/export/BigGraphTest.java index 1554e5c84..1c3a4a379 100644 --- a/core/src/test/java/apoc/export/BigGraphTest.java +++ b/core/src/test/java/apoc/export/BigGraphTest.java @@ -14,6 +14,7 @@ import apoc.util.Util; import org.junit.BeforeClass; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Test; import org.neo4j.configuration.GraphDatabaseSettings; import org.neo4j.graphdb.Node; @@ -33,6 +34,7 @@ import static org.neo4j.configuration.GraphDatabaseSettings.TransactionStateMemoryAllocation.OFF_HEAP; import static org.neo4j.configuration.SettingValueParsers.BYTES; +@Ignore public class BigGraphTest { private static final File directory = new File("target/import"); static { //noinspection ResultOfMethodCallIgnored diff --git a/core/src/test/java/apoc/export/arrow/ArrowTest.java b/core/src/test/java/apoc/export/arrow/ArrowTest.java index 28181a9db..fad53f3a2 100644 --- a/core/src/test/java/apoc/export/arrow/ArrowTest.java +++ b/core/src/test/java/apoc/export/arrow/ArrowTest.java @@ -8,6 +8,7 @@ import com.fasterxml.jackson.core.JsonProcessingException; import org.junit.BeforeClass; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Test; import org.neo4j.configuration.GraphDatabaseSettings; import org.neo4j.graphdb.Result; @@ -29,6 +30,8 @@ import static apoc.ApocConfig.apocConfig; import static org.junit.Assert.assertEquals; +// todo - to remove, just to check CI build failure +@Ignore public class ArrowTest { private static File directory = new File("target/arrow import"); diff --git a/core/src/test/java/apoc/export/graphml/ExportGraphMLS3Test.java b/core/src/test/java/apoc/export/graphml/ExportGraphMLS3Test.java index 92ca4a098..adeaae9e8 100644 --- a/core/src/test/java/apoc/export/graphml/ExportGraphMLS3Test.java +++ b/core/src/test/java/apoc/export/graphml/ExportGraphMLS3Test.java @@ -3,6 +3,7 @@ import apoc.util.TestUtil; import apoc.util.s3.S3BaseTest; import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestName; @@ -24,6 +25,7 @@ import static apoc.util.s3.S3TestUtil.readS3FileToString; import static org.junit.Assert.*; +@Ignore public class ExportGraphMLS3Test extends S3BaseTest { @Rule diff --git a/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java b/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java index 6daa63fe7..f4f246104 100644 --- a/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java +++ b/core/src/test/java/apoc/export/graphml/ExportGraphMLTest.java @@ -10,6 +10,7 @@ import org.apache.commons.lang.exception.ExceptionUtils; import org.apache.commons.lang3.StringUtils; import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestName; @@ -65,6 +66,7 @@ * @author mh * @since 22.05.16 */ +@Ignore public class ExportGraphMLTest { @Rule