-
Notifications
You must be signed in to change notification settings - Fork 5
/
tox.ini
62 lines (56 loc) · 1013 Bytes
/
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
[tox]
envlist =
py{37,38,39,310,311,312}
pypy3
build
fmt
lint
[testenv]
extras =
test
commands =
pytest tests {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:fmt]
skip_install = true
deps =
autoflake>=2
isort>=5
ruff>=0.3.5
commands =
autoflake --in-place --recursive --remove-all-unused-imports .
isort .
ruff format
[testenv:lint]
extras =
test
deps =
codespell>=2
mypy>=1
pyright>=1.1
releasecmd
ruff>=0.3.5
commands =
mypy pytest_md_report setup.py
pyright
- codespell pytest_md_report examples tests -q 2 --check-filenames
ruff format --check
ruff check
[testenv:release]
deps =
releasecmd
commands =
python setup.py release --sign --skip-uploading --verbose --search-dir pytest_md_report