This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtox.ini
92 lines (76 loc) · 1.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[testenv]
skipsdist = True
usedevelop = True
commands =
pip install -e {toxinidir}
pip install -e {toxinidir}[tests]
python setup.py test --junitxml=junit-{envname}.xml --clearcache --cov {toxinidir}/omnibus
deps15 =
https://github.com/django/django/archive/stable/1.5.x.zip#egg=django
deps16 =
https://github.com/django/django/archive/stable/1.6.x.zip#egg=django
deps17 =
https://github.com/django/django/archive/stable/1.7.x.zip#egg=django
[testenv:2.6-1.5.x]
basepython = python2.6
deps =
{[testenv]deps15}
[testenv:2.6-1.6.x]
basepython = python2.6
deps =
{[testenv]deps16}
[testenv:2.7-1.5.x]
basepython = python2.7
deps =
{[testenv]deps15}
[testenv:2.7-1.6.x]
basepython = python2.7
deps =
{[testenv]deps16}
[testenv:2.7-1.7.x]
basepython = python2.7
deps =
{[testenv]deps17}
[testenv:3.3-1.5.x]
basepython = python3.3
deps =
{[testenv]deps15}
[testenv:3.3-1.6.x]
basepython = python3.3
deps =
{[testenv]deps16}
[testenv:3.3-1.7.x]
basepython = python3.3
deps =
{[testenv]deps17}
[testenv:3.4-1.5.x]
basepython = python3.4
deps =
{[testenv]deps15}
[testenv:3.4-1.6.x]
basepython = python3.4
deps =
{[testenv]deps16}
[testenv:3.4-1.7.x]
basepython = python3.4
deps =
{[testenv]deps17}
[testenv:pypy-1.5.x]
basepython = pypy
deps =
{[testenv]deps15}
[testenv:pypy-1.6.x]
basepython = pypy
deps =
{[testenv]deps16}
[testenv:pypy-1.7.x]
basepython = pypy
deps =
{[testenv]deps17}
[docs]
commands =
pip install -e {toxinidir}
pip install -e {toxinidir}[docs]
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -W -b linkcheck docs docs/_build/html