forked from fabfacts/django-stored-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
51 lines (43 loc) · 836 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
43
44
45
46
47
48
49
50
51
[tox]
envlist =
py27-django17, py27-django18, py27-django19
py34-django17, py34-django18, py34-django19
docs
[testenv]
commands = coverage run -a runtests.py
deps = -r{toxinidir}/requirements-test.txt
[testenv:py27-django17]
basepython = python2.7
deps =
Django<1.8
{[testenv]deps}
[testenv:py27-django18]
basepython = python2.7
deps =
Django<1.9
{[testenv]deps}
[testenv:py27-django19]
basepython = python2.7
deps =
Django==1.9
{[testenv]deps}
[testenv:py34-django17]
basepython = python3.4
deps =
Django<1.8
{[testenv]deps}
[testenv:py34-django18]
basepython = python3.4
deps =
Django<1.9
{[testenv]deps}
[testenv:py34-django19]
basepython = python3.4
deps =
Django==1.9
{[testenv]deps}
[testenv:docs]
basepython=python
changedir=docs
deps=sphinx
commands=make html