forked from jpadilla/django-rest-framework-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
34 lines (31 loc) · 999 Bytes
/
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
[tox]
envlist =
py27-{flake8,docs},
{py27,py33,py34,py35}-django{1.8,1.9,1.10}-drf{3.0,3.1,3.2,3.3,3.4,3.5}
[testenv]
commands = ./runtests.py --fast {posargs} --verbose
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django1.8: Django==1.8.7
django1.9: Django==1.9.0
django1.10: Django==1.10
drf2.4: djangorestframework==2.4.5
drf3.0: djangorestframework==3.0.5
drf3.1: djangorestframework==3.1.3
drf3.2: djangorestframework==3.2.2
drf3.3: djangorestframework==3.3.2
drf3.4: djangorestframework==3.4.6
drf3.5: djangorestframework==3.5.0
py27-django{1.8,1.9}-drf{3.1,3.2,3.3}: djangorestframework-oauth==1.0.1
-rrequirements/testing.txt
[testenv:py27-flake8]
commands = ./runtests.py --lintonly
deps =
-rrequirements/codestyle.txt
-rrequirements/testing.txt
[testenv:py27-docs]
commands = mkdocs build
deps =
-rrequirements/testing.txt
-rrequirements/documentation.txt