forked from IBM/scriptit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
53 lines (45 loc) · 1.11 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
[tox]
envlist = py, lint, fmt
[testenv]
description = run tests with pytest with coverage
extras =
all
dev-test
commands = ./scripts/run_tests.sh
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
; TODO -- Enable docs!!
; [testenv:docs]
; recreate = True
; extras = dev-docs
; changedir = docs/source
; ; Disabled '-W' flag as warnings in the files
; ; TOTO: Add back in once build warnings fixed
; commands =
; sphinx-build -E -a -b html -T . _build/html
[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 term_tools
[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/*