Skip to content

Commit f80de21

Browse files
committed
Run tests in parallel via tox
1 parent 33e1518 commit f80de21

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ env_list =
99
[testenv]
1010
deps =
1111
numpy
12+
pytest-sugar
1213
extras =
1314
tests
1415
commands =
1516
{envpython} selftest.py
16-
{envpython} -m pytest -W always {posargs}
17+
{envpython} -m pytest \
18+
--dist worksteal \
19+
--numprocesses auto \
20+
-W always \
21+
{posargs}
1722

1823
[testenv:lint]
1924
skip_install = true

0 commit comments

Comments
 (0)