-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathtox.ini
More file actions
71 lines (64 loc) · 1.23 KB
/
tox.ini
File metadata and controls
71 lines (64 loc) · 1.23 KB
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,
py311,
py312,
py313
[gh-actions]
python =
3.11: py311
3.12: py312
3.13: py313
[testenv]
basepython =
{check,docs}: {env:TOXPYTHON:python3.12}
setenv =
PYTHONPATH={toxinidir}/tests
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 tests
[testenv:docs]
usedevelop = true
commands =
sphinx-build {posargs:-E} -b html docs docs/_build
sphinx-build -b linkcheck docs docs/_build
[testenv:py311]
basepython = {env:TOXPYTHON:python3.11}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov
[testenv:py312]
basepython = {env:TOXPYTHON:python3.12}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov
[testenv:py313]
basepython = {env:TOXPYTHON:python3.13}
setenv =
{[testenv]setenv}
usedevelop = true
commands =
{posargs:pytest --cov --cov-report=term-missing -vv}
deps =
pytest-cov