From d08a126660234913751ecc0ef9e3487a546bab92 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Sun, 25 Jan 2026 17:45:25 +0200 Subject: [PATCH] Removed --dist=loadscope --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 51e8c115..7c71a918 100644 --- a/tox.ini +++ b/tox.ini @@ -28,8 +28,8 @@ commands_pre = poetry install -E "all" --with test commands = unit: poetry run pytest tests/unit/ --maxfail=3 {posargs} - integration: poetry run pytest tests/integration/ --exitfirst --dist=loadscope {posargs} - smoke: poetry run pytest tests/smoke/ --exitfirst --dist=loadscope {posargs} + integration: poetry run pytest tests/integration/ --exitfirst {posargs} + smoke: poetry run pytest tests/smoke/ --exitfirst {posargs} basepython = 3.9: py39 3.10: py310 @@ -56,7 +56,7 @@ commands_pre = poetry install -E "all" --with test commands = poetry run pytest tests --exitfirst \ - -n auto --dist=loadscope \ + -n auto \ --reruns 3 --reruns-delay 5 \ {posargs} @@ -69,7 +69,7 @@ commands_pre = poetry install -E "all" --with test commands = tox -e py313-unit,py313-integration,py313-smoke -p auto -o -- --exitfirst \ - -n auto --dist=loadscope \ + -n auto \ --reruns 3 --reruns-delay 10 \ {posargs}