-
Notifications
You must be signed in to change notification settings - Fork 6
/
tox.ini
89 lines (77 loc) · 1.73 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
; a generative tox configuration, see: https://testrun.org/tox/latest/config.html#generative-envlist
[tox]
envlist =
check,
{py34,py35,py36}
[testenv]
basepython =
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
docs: {env:TOXPYTHON:python3.4}
{coveralls,codecov}: {env:TOXPYTHON:python3}
{check,check.isort,check.style,check.manifest}: {env:TOXPYTHON:python3}
setenv =
PYTHONPATH={toxinidir}/tests
PYTHONUNBUFFERED=yes
passenv =
*
usedevelop = false
deps = -r{toxinidir}/travis-requirements.txt
commands =
pytest {posargs:tests}
[testenv:docs]
whitelist_externals =
make
changedir=docs
deps =
-r{toxinidir}/docs/requirements.txt
commands =
make html
make linkcheck
[testenv:check.isort]
deps =
isort
skip_install = true
commands =
isort --check-only --diff src tests setup.py
[testenv:check.style]
deps =
pycodestyle
skip_install = true
commands =
pycodestyle src tests setup.py
[testenv:check.manifest]
deps =
check-manifest
skip_install = true
commands =
- check-manifest -u -v {toxinidir}
[testenv:check]
deps =
docutils
readme-renderer
# pygments
{[testenv:check.manifest]deps}
{[testenv:check.style]deps}
{[testenv:check.isort]deps}
skip_install = true
commands =
python setup.py check --strict --metadata --restructuredtext
# - {[testenv:check.manifest]commands}
{[testenv:check.style]commands}
{[testenv:check.isort]commands}
[testenv:coveralls]
deps =
coveralls
skip_install = true
commands =
coveralls []
[testenv:codecov]
deps =
codecov
skip_install = true
commands =
coverage xml --ignore-errors
codecov []