forked from ignatenkobrain/sphinxcontrib-issuetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
47 lines (43 loc) · 940 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
[tox]
envlist=py26,py27,py32,pypy
[testenv]
deps=
sphinx>=1.1
requests>=1.1
mock>=0.7
pytest>=2.0
; These are not yet compatible to Python 3
; launchpadlib
; SOAPpy>=0.12.5
; python-debianbts>=1.10
commands=
py.test {posargs:--junitxml={envname}-tests.xml}
[testenv:py26]
deps=
sphinx>=1.1
requests>=1.1
mock>=0.7
pytest>=2.0
launchpadlib
SOAPpy>=0.12.5
python-debianbts>=1.10
commands=
py.test {posargs:--junitxml={envname}-tests.xml}
[testenv:py27]
deps=
sphinx>=1.1
requests>=1.1
mock>=0.7
pytest>=2.0
launchpadlib
SOAPpy>=0.12.5
python-debianbts>=1.10
commands=
py.test {posargs:--junitxml={envname}-tests.xml}
[testenv:doc]
basepython=python2
deps=
sphinx>=1.1
commands=
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees doc {envtmpdir}/linkcheck
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html