-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (26 loc) · 770 Bytes
/
Copy pathtox.ini
File metadata and controls
28 lines (26 loc) · 770 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
[tox]
# NB! Don't forget to update `.github/workflows/tests.yml`
envlist =
py{310,311,312}-dj{32,40,41,42}
py{310,311,312}-dj{50,51,52}
py{313,314}-dj{51,52}
[gh-actions]
python =
3.10: py310-dj{32,40,41,42,50,51,52}
3.11: py311-dj{32,40,41,42,50,51,52}
3.12: py312-dj{32,40,41,42,50,51,52}
3.13: py313-dj{51,52}
3.14: py314-dj{51,52}
[testenv]
# See https://www.djangoproject.com/download/ for list of Django releases
# And https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
dependency_groups = test
deps =
dj32: Django~=3.2.0
dj40: Django~=4.0.0
dj41: Django~=4.1.0
dj42: Django~=4.2.0
dj50: Django~=5.0.0
dj51: Django~=5.1.0
dj52: Django~=5.2.0
commands = pytest