Skip to content

Commit

Permalink
Run local tox tests in parallel
Browse files Browse the repository at this point in the history
At some point tox made it possible to run tox envs
in parallel. This turns it on for the make `test`
target. Speeds things up greatly.
  • Loading branch information
cdent committed Mar 25, 2022
1 parent 0e0dfd6 commit f0cae08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ docs:
cd docs ; $(MAKE) html

test:
tox --skip-missing-interpreters
tox --skip-missing-interpreters -p 8

dist: test
python3 setup.py sdist bdist_wheel
Expand Down

0 comments on commit f0cae08

Please sign in to comment.