Skip to content

Commit a73335a

Browse files
committed
test: fix dependency groups
Previously, the test dependencies were not installed, which resulted in a call to an incorrect `pytest` executable.
1 parent a483669 commit a73335a

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ ignore = D001
88

99
[testenv]
1010
runner = uv-venv-lock-runner
11-
dependency_groups = django42
12-
uv_resolution = highest
13-
allowlist_externals =
14-
python
11+
dependency_groups =
12+
test
13+
django42
1514
commands =
1615
python manage.py check
1716
python manage.py makemigrations learning_credentials --check --dry-run --verbosity 3
1817
pytest {posargs}
1918

2019
[testenv:py{311,312}-django52]
21-
dependency_groups = django52
20+
dependency_groups =
21+
test
22+
django52
2223

2324
[testenv:docs]
2425
dependency_groups =

0 commit comments

Comments
 (0)