Use option parallel=True for coverage (Fixes #222)

See https://github.com/nedbat/coveragepy/issues/716
pull/226/head
David Núñez 2018-10-19 13:43:24 +02:00
parent b51c38d1e1
commit f5bebc6a1e
2 changed files with 2 additions and 1 deletions

View File

@ -175,7 +175,7 @@ jobs:
pipenv install --dev pytest
- run:
name: pyUmbral Tests (Python 3.5)
command: pipenv run pytest --junitxml=./reports/pytest/python35-results.xml
command: pipenv run pytest --cov=. --cov-report=html --junitxml=./reports/pytest/python35-results.xml
- store_test_results:
path: /reports/pytest
- store_artifacts:

View File

@ -2,3 +2,4 @@
omit =
setup.py,
*__init__.py
parallel=True