-
Notifications
You must be signed in to change notification settings - Fork 35
/
tox.ini
46 lines (44 loc) · 1009 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
[tox]
envlist =
py{27,36}-sphinx{15,16,17,18}
py{36,37,38,39}-sphinx{21,22,23,24,30,31,32,33,34,35,40,41,42,43,44,latest}
py310-sphinx{42,43,44,latest}
lint
[testenv]
setenv =
LANG=C
deps =
pytest
jinja2<3.1
sphinx15: Sphinx<1.6
sphinx16: Sphinx<1.7
sphinx17: Sphinx<1.8
sphinx18: Sphinx<1.9
sphinx21: Sphinx<2.2
sphinx22: Sphinx<2.3
sphinx23: Sphinx<2.4
sphinx24: Sphinx<2.5
sphinx30: Sphinx<3.1
sphinx31: Sphinx<3.2
sphinx32: Sphinx<3.3
sphinx33: Sphinx<3.4
sphinx34: Sphinx<3.5
sphinx35: Sphinx<3.6
sphinx40: Sphinx<4.1
sphinx41: Sphinx<4.2
sphinx42: Sphinx<4.3
sphinx43: Sphinx<4.4
sphinx44: Sphinx<4.5
sphinxlatest: Sphinx
sphinxmaster: git+https://github.com/sphinx-doc/sphinx.git@master
commands =
pytest {posargs}
[testenv:lint]
deps =
sphinx<5
prospector==1.3.1
commands =
prospector \
--profile-path={toxinidir} \
--profile=prospector \
--die-on-tool-error