We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76dc73 commit ae2f203Copy full SHA for ae2f203
testkit/stress.py
@@ -14,9 +14,15 @@
14
os.environ["TEST_NEO4J_HOST"],
15
os.environ["TEST_NEO4J_PORT"])
16
password = os.environ["TEST_NEO4J_PASS"]
17
+ is_cluster = os.environ.get("TEST_NEO4J_IS_CLUSTER", False)
18
+ if is_cluster:
19
+ suite = "CausalClusteringStressIT"
20
+ else:
21
+ suite = "SingeInstanceStressIT"
22
+
23
cmd = [
24
"mvn", "surefire:test",
- "-Dtest=CausalClusteringStressIT,AbstractStressTestBase",
25
+ "-Dtest=%s,AbstractStressTestBase" % suite,
26
"-DexternalClusterUri=%s" % uri,
27
"-Dneo4jUserPassword=%s" % password,
28
"-DthreadCount=10",
0 commit comments