-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtox.ini
More file actions
85 lines (76 loc) · 1.49 KB
/
tox.ini
File metadata and controls
85 lines (76 loc) · 1.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tox]
envlist =
check,
docs,
py310,
py311,
py312
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
[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
ruff
black
skip_install = true
commands =
check-manifest {toxinidir}
ruff check src tests
black --check src tests
[testenv:docs]
usedevelop = true
commands =
sphinx-build {posargs:-E} -b html docs docs/_build
sphinx-build -b linkcheck docs docs/_build
[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
[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:fmt]
description = Auto-format with black
deps = black
skip_install = true
commands = black src tests
[testenv:lint]
description = Lint & auto-fix with ruff (incl. import sort)
deps = ruff
skip_install = true
commands = ruff check --fix src tests