forked from jpadilla/django-rest-framework-xml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
45 lines (42 loc) · 1.35 KB
/
tox.ini
File metadata and controls
45 lines (42 loc) · 1.35 KB
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
[tox]
envlist =
py27-{flake8,docs},
{py27,py33,py34}-django1.6-drf{2.4,3.0,3.1,3.2}
{py27,py33,py34}-django1.7-drf{2.4,3.0,3.1,3.2,3.3}
{py27,py33,py34}-django1.8-drf{2.4,3.0,3.1,3.2,3.3,3.4,3.5,3.6}
{py27,py33,py34}-django1.9-drf{3.3,3.4,3.5,3.6}
{py27,py33,py34}-django1.10-drf{3.4,3.5,3.6,3.7,3.8}
{py27,py33,py34}-django1.11-drf{3.5,3.6,3.7,3.8}
{py34}-django2.0-drf{3.7,3.8}
[testenv]
commands = ./runtests.py --fast
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django1.6: Django==1.6.*
django1.7: Django==1.7.*
django1.8: Django==1.8.*
django1.9: Django==1.9.*
django1.10: Django==1.10.*
django1.11: Django==1.11.*
django2.0: Django==2.0.*
drf2.4: djangorestframework==2.4.*
drf3.0: djangorestframework==3.0.*
drf3.1: djangorestframework==3.1.*
drf3.2: djangorestframework==3.2.*
drf3.3: djangorestframework==3.3.*
drf3.4: djangorestframework==3.4.*
drf3.5: djangorestframework==3.5.*
drf3.6: djangorestframework==3.6.*
drf3.7: djangorestframework==3.7.*
drf3.8: djangorestframework==3.8.*
pytest-django==2.8.0
[testenv:py27-flake8]
commands = ./runtests.py --lintonly
deps =
pytest==2.7.0
flake8==2.4.0
[testenv:py27-docs]
commands = mkdocs build
deps =
mkdocs>=0.11.1