forked from futurecolors/django-geoip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
30 lines (28 loc) · 750 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
[tox]
envlist = py{26,27,34}-django{15,16},
py26-django14,
py27-django{14,17,18,19},
py34-django{17,18,19},
py35-django{18,19},
sphinx
downloadcache = {toxworkdir}/_download/
[testenv]
setenv =
DJANGO_SETTINGS_MODULE = test_app.test_settings
commands =
python manage.py test --traceback
deps =
-r{toxinidir}/tests/requirements.txt
django14: Django>=1.4,<1.5
django15: Django>=1.5,<1.6
django16: Django>=1.6,<1.7
django17: Django>=1.7,<1.8
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
[testenv:sphinx]
deps =
Django>=1.8,<1.9
Sphinx
changedir = {toxinidir}/docs
commands = sphinx-build -n -b html -d .build/doctrees . .build/html
skipsdist=True