-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (27 loc) · 657 Bytes
/
tox.ini
File metadata and controls
28 lines (27 loc) · 657 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]
; https://www.python.org/downloads/
; https://www.djangoproject.com/download/
minversion = 3.6
envlist =
py39-dj{32,40},
py310-dj{32,40,41},
py311-dj{41,42,50,51},
py312-dj{42,50,51},
[testenv]
passenv =
POSTGRES_HOST
MYSQL_HOST
TEST_DATABASE_ENGINE
setenv =
DJANGO_SETTINGS_MODULE=tests.settings
deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
dj50: Django>=5.0,<5.3
dj51: Django>=5.1,<5.2
djmaster: git+https://github.com/django/django
py{39,310,311,312}: -r {toxinidir}/requirements-test.txt
commands =
py.test --benchmark-skip