-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
tox.ini
114 lines (104 loc) · 1.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tox]
skip_missing_interpreters = true
envlist =
py{39,310,311,312,313}
pypy3
build
cov
docs
fmt
lint
readme
[testenv]
passenv = *
allowlist_externals =
pytest
extras =
test
commands =
pytest {posargs}
[testenv:build]
deps =
build>=1
twine
wheel
commands =
python -m build
twine check dist/*.whl dist/*.tar.gz
[testenv:clean]
skip_install = true
deps =
cleanpy>=0.4
commands =
cleanpy --all --exclude-envs .
[testenv:cov]
extras =
test
deps =
coverage[toml]>=5
commands =
coverage run -m pytest {posargs:-vv}
coverage report -m
[testenv:docs]
extras =
docs
commands =
sphinx-build docs/ docs/_build
[testenv:fmt]
skip_install = true
deps =
autoflake>=2
isort>=5
ruff>=0.8
commands =
autoflake --in-place --recursive --remove-all-unused-imports .
isort .
ruff format setup.py docs examples test pytablewriter
[testenv:lint]
extras =
all
deps =
codespell>=2
ipykernel
; mypy>=1
pyright>=1.1
pytest>=6
ruff>=0.8
tablib
types-PyYAML
types-simplejson
types-toml
releasecmd
commands =
ruff format --check setup.py docs test pytablewriter
codespell -q2 pytablewriter docs/pages
pyright pytablewriter setup.py
; mypy pytablewriter examples setup.py
ruff check pytablewriter setup.py
[testenv:lint-examples]
extras =
all
deps =
black[jupyter]>=24.1
codespell>=2
pyright>=1.1
ruff>=0.8
tblfaker
commands =
ruff format --check examples
codespell -q2 examples
pyright examples
ruff check examples
[testenv:readme]
skip_install = true
changedir = docs
deps =
path
readmemaker>=1.1.0
commands =
python make_readme.py
[testenv:release]
deps =
releasecmd
commands =
python setup.py release --sign --skip-uploading --verbose