forked from linovia/django-rest-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
32 lines (27 loc) · 774 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
[pytest]
addopts=--tb=short
[tox]
envlist =
py27-{lint,docs},
{py27,py32,py33,py34}-django{17,18},
{py27,py34,py35}-django{19}
[testenv]
commands = ./runtests.py --fast {posargs} --coverage -rw
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django17: Django==1.7.11
django18: Django==1.8.7
django19: Django==1.9
-rrequirements/requirements-testing.txt
-rrequirements/requirements-optionals.txt
[testenv:py27-lint]
commands = ./runtests.py --lintonly
deps =
-rrequirements/requirements-codestyle.txt
-rrequirements/requirements-testing.txt
[testenv:py27-docs]
commands = mkdocs build
deps =
-rrequirements/requirements-testing.txt
-rrequirements/requirements-documentation.txt