Parallelize unit tests in CI with pytest-xdist

This commit is contained in:
yuvipanda
2018-07-11 09:31:01 -07:00
parent ef8d111b40
commit 9479f3c6b9
2 changed files with 2 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ jobs:
- run:
name: run unit tests
command: |
py.test tests/
py.test -n 4 tests/
# Run full installer test
- setup_remote_docker

View File

@@ -1 +1,2 @@
pytest
pytest-xdist