forked from marcgibbons/django-rest-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
36 lines (34 loc) · 972 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
35
36
[tox]
envlist =
py27-flake8,
{py27,py33,py34}-django1.8-drf{2.3,2.4,3.0,3.1,3.2,3.3},
# Django 1.9+ requires Python 2.7/3.4+ and django-rest-framework 3.3+.
{py27,py34}-django1.9-drf3.3,
{py35}-django{1.8,1.9}-drf3.3
[testenv]
commands = ./runtests.py --stop
deps =
django1.8: Django>=1.8,<1.9
django1.9: Django>=1.9,<1.10
drf2.3: djangorestframework>=2.3,<2.4
drf2.4: djangorestframework>=2.4,<2.5
drf3.0: djangorestframework>=3.0,<3.1
drf3.1: djangorestframework>=3.1,<3.2
drf3.2: djangorestframework>=3.2,<3.3
drf3.3: djangorestframework>=3.3,<3.4
{py27,py33,py34}-django{1.8}-drf{2.3,2.4}: PyYAML==3.10
py27: functools32==3.2.3-2
docutils==0.11
argparse==1.2.1
argh==0.23.2
nose==1.3.0
Markdown==2.5.1
mock==1.0.1
django-nose==1.4
coverage==3.6
django-filter==0.10.0
jsonschema==2.5
[testenv:py27-flake8]
deps =
flake8==2.2.5
commands = ./runtests.py --lintonly