forked from pytest-dev/pytest-cov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
78 lines (69 loc) · 2 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
; a generative tox configuration, see: https://tox.readthedocs.io/en/latest/config.html#generative-envlist
[tox]
envlist =
check
py{27,34,35,36,37,py,py3}-pytest{310,46}-xdist27-coverage45
py{27,35,36,37,py,py3}-pytest{310,46}-xdist27-coverage50
py{36,37,38,py3}-pytest{46,51,52}-xdist{29,30}-coverage{45,50}
docs
[testenv]
extras = testing
setenv =
PYTHONUNBUFFERED=yes
# Use env vars for (optional) pinning of deps.
pytest310: _DEP_PYTEST=pytest==3.10.1
pytest40: _DEP_PYTEST=pytest==4.0.2
pytest41: _DEP_PYTEST=pytest==4.1.1
pytest43: _DEP_PYTEST=pytest==4.3.1
pytest44: _DEP_PYTEST=pytest==4.4.2
pytest45: _DEP_PYTEST=pytest==4.5.0
pytest46: _DEP_PYTEST=pytest==4.6.5
pytest51: _DEP_PYTEST=pytest==5.1.3
pytest52: _DEP_PYTEST=pytest==5.2.0
xdist22: _DEP_PYTESTXDIST=pytest-xdist==1.22.0
xdist27: _DEP_PYTESTXDIST=pytest-xdist==1.27.0
xdist28: _DEP_PYTESTXDIST=pytest-xdist==1.28.0
xdist29: _DEP_PYTESTXDIST=pytest-xdist==1.29.0
xdist30: _DEP_PYTESTXDIST=pytest-xdist==1.30.0
coverage45: _DEP_COVERAGE=coverage==4.5.4
coverage50: _DEP_COVERAGE=coverage==5.0a8
passenv =
*
deps =
{env:_DEP_PYTEST:pytest}
{env:_DEP_PYTESTXDIST:pytest-xdist}
{env:_DEP_COVERAGE:coverage<5}
pip_pre = true
commands =
pytest {posargs:-vv}
[testenv:spell]
setenv =
SPELLCHECK=1
commands =
sphinx-build -b spelling docs dist/docs
skip_install = true
usedevelop = false
deps =
-r{toxinidir}/docs/requirements.txt
sphinxcontrib-spelling
pyenchant
[testenv:docs]
deps =
-r{toxinidir}/docs/requirements.txt
commands =
sphinx-build {posargs:-E} -b html docs dist/docs
[testenv:check]
deps =
docutils
check-manifest
flake8
readme-renderer
pygments
isort
skip_install = true
usedevelop = false
commands =
python setup.py check --strict --metadata --restructuredtext
check-manifest {toxinidir}
flake8 src tests setup.py
isort --check-only --diff --recursive src tests setup.py