-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
32 lines (29 loc) · 742 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
[tox]
envlist =
py27-{flake8,docs},
{py27,py34,py35}-django{18,19,110}-drf{33,34,35}
[testenv]
commands = ./runtests.py --fast {posargs} --coverage
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django18: Django==1.8.17
django19: Django==1.9.12
django110: Django==1.10.4
drf33: djangorestframework==3.3.3
drf34: djangorestframework==3.4.7
drf35: djangorestframework==3.5.3
django-test-plus==1.0.16
pytest==3.0.5
pytest-django==3.1.2
pytest-cov==2.4.0
hashids==1.1.0
[testenv:py27-flake8]
commands = ./runtests.py --lintonly
deps =
pytest==3.0.5
flake8==3.2.1
[testenv:py27-docs]
commands = mkdocs build
deps =
mkdocs>=0.16.1