blob: 051b563815586b64204d813c6801c64d021b47a8 (
plain)
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
|
[tox]
minversion=2.0
envlist=docs,flake8,mypy,py{27,34,35,36},pypy,du{11,12,13,14}
[testenv]
passenv = https_proxy http_proxy no_proxy
# TODO(stephenfin) Replace this with the 'extras' config option when tox 2.4 is
# widely available, likely some time after the Ubuntu 18.04 release
#
# https://tox.readthedocs.io/en/latest/config.html#confval-extras=MULTI-LINE-LIST
deps =
.[test,websupport]
setenv =
SPHINX_TEST_TEMPDIR = {envdir}/testbuild
commands=
{envpython} -Wall tests/run.py --cov sphinx --durations 25 {posargs}
[testenv:du11]
deps=
docutils==0.11
{[testenv]deps}
[testenv:du12]
deps=
docutils==0.12
{[testenv]deps}
[testenv:du13]
deps=
docutils==0.13.1
{[testenv]deps}
[testenv:du14]
deps=
docutils==0.14
{[testenv]deps}
[testenv:flake8]
commands=flake8
[testenv:pylint]
deps=
pylint
{[testenv]deps}
commands=
pylint --rcfile utils/pylintrc sphinx
[testenv:mypy]
basepython=python3
deps=
mypy
commands=
mypy sphinx/
[testenv:docs]
commands=
python setup.py build_sphinx {posargs}
|