-
Notifications
You must be signed in to change notification settings - Fork 28
/
tox.ini
61 lines (55 loc) · 1.17 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
; a generative tox configuration, see: https://testrun.org/tox/latest/config.html#generative-envlist
[tox]
envlist =
clean,
check,
{py36,py37,py38,py39},
report,
codecov,
docs
skip_missing_interpreters = True
[testenv]
extras =
test
basepython =
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
py38: {env:TOXPYTHON:python3.8}
py39: {env:TOXPYTHON:python3.9}
{clean,check,codecov,docs,report}: {env:TOXPYTHON:python3}
setenv =
PYTHONPATH={toxinidir}
PYTHONUNBUFFERED=yes
passenv =
*
commands =
{posargs:pytest --cov --cov-report=term-missing}
[testenv:docs]
extras =
doc
nb
commands =
sphinx-build {posargs:-E} -W -T -D language=en docs docs/_build/html
[testenv:check]
deps =
check-manifest
flake8
twine
skip_install = true
commands =
python setup.py check --strict --metadata
python setup.py sdist
twine check dist/*.tar.gz
check-manifest {toxinidir}
flake8 src setup.py
[testenv:codecov]
deps =
codecov
skip_install = true
commands =
coverage xml --ignore-errors
codecov []
[testenv:clean]
commands = coverage erase
skip_install = true
deps = coverage