Skip to content

Commit e294bf9

Browse files
committed
Work around tox not following it's docs
`--parallel-no-spinner` is supposed to imply `--parallel`, but apparently, that's not working for us.
1 parent 04ca093 commit e294bf9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

testkit/unittests.py

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

1919

2020
if __name__ == "__main__":
21-
run_python(["-m", "tox", "-vv", "--parallel-no-spinner", "-f", "unit"])
21+
run_python(
22+
[
23+
"-m",
24+
"tox",
25+
"-vv",
26+
"--parallel",
27+
"--parallel-no-spinner",
28+
"-f",
29+
"unit",
30+
]
31+
)

0 commit comments

Comments
 (0)