forked from rapidsms/rapidsms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
73 lines (63 loc) · 1.61 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tox]
envlist = py26-1.4.X,
py26-1.5.X,
py26-1.6.X,
py27-1.4.X,
py27-1.5.X,
py27-1.6.X,
py27-trunk,
[default]
deps = -r{toxinidir}/tests/requirements/dev.txt
[testenv]
basepython = python2.6
setenv = PYTHON_PATH = {toxinidir}
DJANGO_SETTINGS_MODULE = tests.default
commands = {envpython} run_tests.py {posargs}
[testenv:py26-1.4.X]
basepython = python2.6
setenv = {[testenv]setenv}
TESTENV = py26-1.4.X
deps = django>=1.4,<1.5
{[default]deps}
[testenv:py26-1.5.X]
basepython = python2.6
setenv = {[testenv]setenv}
TESTENV = py26-1.5.X
deps = django>=1.5,<1.6
{[default]deps}
[testenv:py26-1.6.X]
basepython = python2.6
setenv = {[testenv]setenv}
TESTENV = py26-1.5.X
deps = django>=1.6,<1.7
{[default]deps}
[testenv:py27-1.4.X]
basepython = python2.7
setenv = {[testenv]setenv}
TESTENV = py27-1.4.X
deps = django>=1.4,<1.5
{[default]deps}
[testenv:py27-1.5.X]
basepython = python2.7
setenv = {[testenv]setenv}
TESTENV = py27-1.5.X
deps = django>=1.5,<1.6
{[default]deps}
[testenv:py27-1.6.X]
basepython = python2.7
setenv = {[testenv]setenv}
TESTENV = py27-trunk
deps = django>=1.6,<1.7
{[default]deps}
[testenv:py27-trunk]
basepython = python2.7
setenv = {[testenv]setenv}
TESTENV = py27-trunk
deps = https://github.com/django/django/archive/master.zip
{[default]deps}
[testenv:docs]
basepython = python2.7
deps = Sphinx==1.1.3
{[default]deps}
commands =
{envbindir}/sphinx-build -a -n -W -b html -d docs/_build/doctrees docs docs/_build/html