Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}

Expand All @@ -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}

Expand Down
Loading