-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtox.ini
54 lines (47 loc) · 1.1 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
[tox]
envlist = py, lint, fmt, docs
[testenv]
description = run tests with pytest with coverage
extras =
all
dev-test
passenv =
LOG_LEVEL
LOG_FILTERS
LOG_JSON
LOG_THREAD_ID
LOG_CHANNEL_WIDTH
commands = ./scripts/run_tests.sh {posargs}
allowlist_externals = ./scripts/run_tests.sh
; Unclear: We probably want to test wheel packaging
; But! tox will fail when this is set and _any_ interpreter is missing
; Without this, sdist packaging is tested so that's a start.
package=wheel
[testenv:docs]
description = build documentation
extras = dev-docs
commands = ./scripts/document.sh {posargs}
allowlist_externals = ./scripts/document.sh
[testenv:fmt]
description = format with pre-commit
extras = dev-fmt
commands = ./scripts/fmt.sh
allowlist_externals = ./scripts/fmt.sh
[testenv:lint]
description = lint with ruff
extras =
all
dev-fmt
dev-test
commands = ruff check oper8
[testenv:build]
description = build wheel
deps =
build
setuptools
commands = python -m build
skip_install = True
[testenv:twinecheck]
description = check wheel
deps = twine
commands = twine check dist/*