-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
50 lines (41 loc) · 1.44 KB
/
tox.ini
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
42
43
44
45
46
47
48
49
50
[tox]
isolated_build = True
;skipsdist = True
envlist =
py{38,39,310,311}-django{32,42}
[testenv]
;commands_pre = pip-sync-faster pip coverage pytest
commands =
python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m coverage run --parallel -m pytest {posargs:tests}
[testenv:py38-django32]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py38-dev.txt
-rrequirements/py38-django32.txt
[testenv:py38-django42]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py38-dev.txt
-rrequirements/py38-django42.txt
[testenv:py39-django32]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py39-dev.txt
-rrequirements/py39-django32.txt
[testenv:py39-django42]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py39-dev.txt
-rrequirements/py39-django42.txt
[testenv:py310-django32]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py310-dev.txt
-rrequirements/py310-django32.txt
[testenv:py310-django42]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py310-dev.txt
-rrequirements/py310-django42.txt
[testenv:py311-django32]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py311-dev.txt
-rrequirements/py311-django32.txt
[testenv:py311-django42]
deps =
-rhttps://raw.githubusercontent.com/DLRSP/requirements/main/py311-dev.txt
-rrequirements/py311-django42.txt