Skip to content

Commit 5092f1f

Browse files
author
Peter Wilhelmsson
committed
testkit:Fixes stress suite error on single instances
1 parent ae2f203 commit 5092f1f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

testkit/stress.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@
1818
if is_cluster:
1919
suite = "CausalClusteringStressIT"
2020
else:
21-
suite = "SingeInstanceStressIT"
21+
suite = "SingleInstanceStressIT"
2222

2323
cmd = [
2424
"mvn", "surefire:test",
25+
"--file", "./driver/pom.xml",
2526
"-Dtest=%s,AbstractStressTestBase" % suite,
2627
"-DexternalClusterUri=%s" % uri,
2728
"-Dneo4jUserPassword=%s" % password,
@@ -30,4 +31,4 @@
3031
"-Dmaven.gitcommitid.skip=true",
3132
]
3233
subprocess.run(cmd, universal_newlines=True,
33-
stderr=subprocess.STDOUT, check=True, cwd="driver")
34+
stderr=subprocess.STDOUT, check=True)

0 commit comments

Comments
 (0)