-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtox.ini
More file actions
41 lines (35 loc) · 771 Bytes
/
tox.ini
File metadata and controls
41 lines (35 loc) · 771 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
31
32
33
34
35
36
37
38
39
40
41
[tox]
envlist =
flake8,
py39-dj42
py310-dj{42,50,51,master}
py311-dj{42,50,51,master}
py312-dj{42,50,51,master}
py313-dj{42,50,51,master}
[testenv]
commands = py.test --cov xff {posargs}
deps =
dj42: Django>=4.2,<4.3
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
djmaster: https://github.com/django/django/archive/master.tar.gz
pytest-django
pytest-cov
pytest-xdist
[travis]
python =
3.9: py39-dj42
3.10: py310-dj{42,50,51,master}
3.11: py311-dj{42,50,51,master}
3.12: py312-dj{42,50,51,master}
3.13: py313-dj{42,50,51,master}, flake8
[travis:env]
DJANGO =
4.2: dj42
5.0: dj50
5.1: dj51
master: djmaster
[testenv:flake8]
deps = flake8
basepython = python3.13
commands = flake8 xff tests