-
-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (29 loc) · 648 Bytes
/
tox.ini
File metadata and controls
30 lines (29 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tox]
requires =
tox>=4.2
env_list =
py314-django{60, 52}
py313-django{60, 52, 51}
py312-django{60, 52, 51, 50, 42}
py311-django{52, 51, 50, 42}
py310-django{52, 51, 50, 42}
[testenv]
runner = uv-venv-lock-runner
package = wheel
wheel_build_env = .pkg
set_env =
PYTHONDEVMODE = 1
commands =
python \
-W error::ResourceWarning \
-W error::DeprecationWarning \
-W error::PendingDeprecationWarning \
-m coverage run \
-m pytest {posargs:tests}
dependency_groups =
test
django42: django42
django50: django50
django51: django51
django52: django52
django60: django60