-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
67 lines (62 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tox]
envlist =
lint,docs,
{py27,py34}-django1.8-drf{3.1,3.2,3.3,3.4,3.5,3.6},
{py27,py34}-django1.9-drf{3.1,3.2,3.3,3.4,3.5,3.6}
{py27,py34}-django1.10-drf{3.4,3.5,3.6,3.7,3.8}
{py27,py34,py35,py36,py37}-django1.11-drf{3.4,3.5,3.6,3.7,3.8,3.9}
{py34,py35,py36,py37}-django2.0-drf{3.7,3.8,3.9}
{py35,py36,py37}-django2.1-drf{3.7,3.8,3.9}
[travis:env]
DJANGO =
1.8: django1.8
1.9: django1.9
1.10: django1.10
1.11: django1.11
2.0: django2.0
2.1: django2.1
2.2: django2.2
DRF =
3.1: drf3.1
3.2: drf3.2
3.3: drf3.3
3.4: drf3.4
3.5: drf3.5
3.6: drf3.6
3.7: drf3.7
3.8: drf3.8
3.9: drf3.9
[testenv]
commands = ./runtests.py --fast
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django1.8: Django==1.8.15
django1.9: Django==1.9.10
django1.10: Django==1.10.2
django1.11: Django==1.11.20
django2.0: Django==2.0.13
django2.1: Django==2.1.7
django2.2: Django==2.2
drf3.1: djangorestframework==3.1.3
drf3.2: djangorestframework==3.2.5
drf3.3: djangorestframework==3.3.3
drf3.4: djangorestframework==3.4.7
drf3.5: djangorestframework==3.5.1
drf3.6: djangorestframework==3.6.4
drf3.7: djangorestframework==3.7.7
drf3.8: djangorestframework==3.8.2
drf3.9: djangorestframework==3.9.2
pytest-django==3.0.0
pytest<4.0.0
[testenv:lint]
basepython = python2.7
commands = ./runtests.py --lintonly
deps =
pytest==3.0.0
flake8==2.4.0
[testenv:docs]
basepython = python2.7
commands = mkdocs build
deps =
mkdocs>=0.11.1