-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtox.ini
42 lines (34 loc) · 902 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
37
38
39
40
41
42
[tox]
downloadcache = {toxworkdir}/_download/
envlist = py26-trunk,py26-1.5.X,py26-1.4.X,docs
[testenv]
commands = {envpython} runtests.py
[testenv:py27-trunk]
basepython = python2.7
deps = https://github.com/django/django/zipball/master
rapidsms>=0.12.0
[testenv:py26-trunk]
basepython = python2.6
deps = https://github.com/django/django/zipball/master
rapidsms>=0.12.0
[testenv:py27-1.5.X]
basepython = python2.7
deps = django>=1.5,<1.6
rapidsms>=0.12.0
[testenv:py26-1.5.X]
basepython = python2.6
deps = django>=1.5,<1.6
rapidsms>=0.12.0
[testenv:py27-1.4.X]
basepython = python2.7
deps = django>=1.4,<1.5
rapidsms>=0.12.0
[testenv:py26-1.4.X]
basepython = python2.6
deps = django>=1.4,<1.5
rapidsms>=0.12.0
[testenv:docs]
basepython = python2.6
deps = Sphinx==1.1.3
commands =
{envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html