From 7edae2e0708488394d23d391032d94346beaf0fd Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 8 Jan 2020 22:02:39 +0100 Subject: [PATCH] Parallel is set by config --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index f32d9325..c53938d9 100644 --- a/tox.ini +++ b/tox.ini @@ -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]