Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NO AUTO Moves nodes, create, refactor, trigger tests to core only #3100

Merged
merged 1 commit into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ subprojects {
forkEvery = 50
maxParallelForks = 1
minHeapSize = "128m"
maxHeapSize = "512m"
ncordon marked this conversation as resolved.
Show resolved Hide resolved

// This would apply only to TeamCity
// We need to ignore the failures because we may have tests muted
Expand Down
60 changes: 1 addition & 59 deletions full/src/test/java/apoc/ApocSplitTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@
*/
public class ApocSplitTest {
public static final List<String> PROCEDURES_FROM_CORE = List.of(
"apoc.trigger.add",
"apoc.trigger.remove",
"apoc.trigger.removeAll",
"apoc.trigger.list",
"apoc.trigger.pause",
"apoc.trigger.resume",
"apoc.util.sleep",
"apoc.util.validate",
"apoc.merge.node.eager",
Expand All @@ -33,13 +27,6 @@ public class ApocSplitTest {
"apoc.merge.relationshipWithStats",
"apoc.merge.relationship.eager",
"apoc.merge.relationshipWithStats.eager",
"apoc.nodes.cycles",
"apoc.nodes.link",
"apoc.nodes.get",
"apoc.nodes.delete",
"apoc.nodes.rels",
"apoc.nodes.collapse",
"apoc.nodes.group",
"apoc.example.movies",
"apoc.path.expand",
"apoc.path.expandConfig",
Expand Down Expand Up @@ -113,25 +100,6 @@ public class ApocSplitTest {
"apoc.spatial.geocodeOnce",
"apoc.spatial.geocode",
"apoc.spatial.reverseGeocode",
"apoc.create.node",
"apoc.create.addLabels",
"apoc.create.setProperty",
"apoc.create.setRelProperty",
"apoc.create.setProperties",
"apoc.create.removeProperties",
"apoc.create.setRelProperties",
"apoc.create.removeRelProperties",
"apoc.create.setLabels",
"apoc.create.removeLabels",
"apoc.create.nodes",
"apoc.create.relationship",
"apoc.create.vNode",
"apoc.create.vNodes",
"apoc.create.vRelationship",
"apoc.create.virtualPath",
"apoc.create.clonePathToVirtual",
"apoc.create.clonePathsToVirtual",
"apoc.create.uuids",
"apoc.warmup.run",
"apoc.stats.degrees",
"apoc.help",
Expand All @@ -154,25 +122,6 @@ public class ApocSplitTest {
"apoc.util.validatePredicate",
"apoc.util.decompress",
"apoc.util.compress",
"apoc.node.relationship.exists",
"apoc.nodes.connected",
"apoc.node.labels",
"apoc.node.id",
"apoc.rel.id",
"apoc.rel.startNode",
"apoc.rel.endNode",
"apoc.rel.type",
"apoc.any.properties",
"apoc.any.property",
"apoc.node.degree",
"apoc.node.degree.in",
"apoc.node.degree.out",
"apoc.node.relationship.types",
"apoc.nodes.relationship.types",
"apoc.node.relationships.exist",
"apoc.nodes.relationships.exist",
"apoc.nodes.isDense",
"apoc.any.isDeleted",
"apoc.path.create",
"apoc.path.slice",
"apoc.path.combine",
Expand Down Expand Up @@ -209,14 +158,7 @@ public class ApocSplitTest {
"apoc.scoring.existence",
"apoc.scoring.pareto",
"apoc.bitwise.op",
"apoc.data.url",
"apoc.create.vNode",
"apoc.create.virtual.fromNode",
"apoc.create.vRelationship",
"apoc.create.uuid",
"apoc.create.uuidBase64",
"apoc.create.uuidBase64ToHex",
"apoc.create.uuidHexToBase64");
"apoc.data.url");

public static final List<String> FULL_PROCEDURES = List.of(
"apoc.metrics.list",
Expand Down