Skip to content

Commit

Permalink
Fix building with newer tox versions
Browse files Browse the repository at this point in the history
Tested with tox 4.14.2, this version did not work before.
  • Loading branch information
walles committed Apr 16, 2024
1 parent 889a0f3 commit c21398c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ commands =
{toxinidir}/tests/installtest.sh

[testenv:pytest]
depends = version.py ruff-format
depends = version.py, ruff-format
deps =
pytest == {[tox]pytest_version}
pytest-avoidance == 0.3.0
Expand All @@ -89,7 +89,7 @@ commands =

[testenv:package]
# Create {toxinidir}/px.pex
depends = version.py ruff-format
depends = version.py, ruff-format
allowlist_externals = {toxinidir}/devbin/make-executable-zip.sh
deps =
# Used by the make-executable-zip.sh script
Expand All @@ -112,7 +112,7 @@ commands =

[testenv:test-wheel]
# Test installing using pip
depends = version.py ruff-format
depends = version.py, ruff-format
allowlist_externals =
/bin/bash
/bin/rm
Expand Down

0 comments on commit c21398c

Please sign in to comment.