-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
71 lines (64 loc) · 1.21 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
[tox]
envlist =
check,
docs,
py39,
py310,
py311
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
[testenv]
basepython =
{check,docs}: {env:TOXPYTHON:python3.11}
setenv =
PYTHONPATH={toxinidir}
PYTHONUNBUFFERED=yes
passenv =
*
extras =
dev
commands =
{posargs:pytest -vv --ignore=src}
[testenv:check]
deps =
check-manifest
isort
skip_install = true
commands =
check-manifest {toxinidir}
isort --verbose --check-only --diff src
[testenv:docs]
usedevelop = true
commands =
sphinx-build {posargs:-E} -b html docs docs/_build
sphinx-build -b linkcheck docs docs/_build
[testenv:py39]
basepython = {env:TOXPYTHON:python3.9}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov
[testenv:py310]
basepython = {env:TOXPYTHON:python3.10}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov
[testenv:py311]
basepython = {env:TOXPYTHON:python3.11}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov