Skip to content

Commit 979480d

Browse files
authored
TestKit: make tox commands more verbose for easier debugging (#1094)
1 parent f790e8e commit 979480d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

testkit/integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919

2020
if __name__ == "__main__":
21-
run_python(["-m", "tox", "-f", "integration"])
21+
run_python(["-m", "tox", "-vv", "-f", "integration"])

testkit/stress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
if __name__ == "__main__":
2323
# Until below works
2424
sys.exit(0)
25-
cmd = ["python", "-m", "tox", "-c", "tox-performance.ini"]
25+
cmd = ["python", "-m", "tox", "-vv", "-c", "tox-performance.ini"]
2626
scheme = os.environ["TEST_NEO4J_SCHEME"]
2727
host = os.environ["TEST_NEO4J_HOST"]
2828
port = os.environ["TEST_NEO4J_PORT"]

testkit/unittests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919

2020
if __name__ == "__main__":
21-
run_python(["-m", "tox", "-f", "unit"])
21+
run_python(["-m", "tox", "-vv", "-f", "unit"])

0 commit comments

Comments
 (0)