forked from ydaniv/django-rest-assured
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
28 lines (26 loc) · 724 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
[tox]
envlist =
py27-flake8,
{py27,py32,py33,py34,py35}-django{1.6,1.7,1.8,1.9}-drf{2.4.3,2.4.4,3.0,3.1,3.2,3.3},
[testenv]
commands =
python -V
py.test -q
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django1.6: Django>=1.6,<1.7
django1.7: Django>=1.7,<1.8
django1.8: Django>=1.8,<1.9
django1.9: Django>=1.9,<1.10
drf2.4.3: djangorestframework==2.4.3
drf2.4.4: djangorestframework==2.4.4
drf3.0: djangorestframework==3.0.5
drf3.1: djangorestframework==3.1.3
drf3.2: djangorestframework==3.2.5
drf3.3: djangorestframework==3.3.1
pytest==2.8.5
pytest-django==2.9.1
[testenv:py27-flake8]
commands = flake8 rest_assured tests --ignore=E501
deps = flake8==2.2.5