Skip to content

Commit c443d61

Browse files
committed
Only download+start server if needed
1 parent 866060d commit c443d61

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,12 @@ def run_fail_wrapper(func, *args, **kwargs):
251251
if test_flags["TLS_TESTS"]:
252252
run_fail_wrapper(runner_container.run_tls_tests)
253253

254+
if not (test_flags["TESTKIT_TESTS"]
255+
or test_flags["STRESS_TESTS"]
256+
or test_flags["INTEGRATION_TESTS"]):
257+
# no need to download any snapshots or start any servers
258+
return
259+
254260
"""
255261
Neo4j server test matrix
256262
"""

0 commit comments

Comments
 (0)