Parallel is set by config

This commit is contained in:
Hynek Schlawack 2020-01-08 22:02:39 +01:00
parent b6bd8c8d2b
commit 7edae2e070
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ commands = python -m pytest {posargs}
[testenv:py27]
extras = {env:TOX_AP_TEST_EXTRAS:tests}
commands = coverage run --parallel -m pytest {posargs}
commands = coverage run -m pytest {posargs}
[testenv:py37]
@ -33,7 +33,7 @@ install_command = pip install --no-compile {opts} {packages}
setenv =
PYTHONWARNINGS=d
extras = {env:TOX_AP_TEST_EXTRAS:tests}
commands = coverage run --parallel -m pytest {posargs}
commands = coverage run -m pytest {posargs}
[testenv:py38]
@ -44,7 +44,7 @@ install_command = pip install --no-compile {opts} {packages}
setenv =
PYTHONWARNINGS=d
extras = {env:TOX_AP_TEST_EXTRAS:tests}
commands = coverage run --parallel -m pytest {posargs}
commands = coverage run -m pytest {posargs}
[testenv:coverage-report]