-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtox.ini
79 lines (71 loc) · 1.42 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
[tox]
envlist =
py{37,38,39,310,311}
pypy3
build
cov
docs
fmt
lint
readme
[testenv]
extras =
test
commands =
pytest {posargs}
[testenv:build]
deps =
build>=0.10
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]
deps =
-r{toxinidir}/requirements/docs_requirements.txt
commands =
sphinx-build docs/ docs/_build
[testenv:fmt]
skip_install = true
deps =
autoflake>=2
black>=23.1
isort>=5
commands =
black setup.py test pytablereader
autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports .
isort .
[testenv:lint]
skip_install = true
deps =
codespell>=2
#mypy>=1
pylama>=8.4.1
commands =
python setup.py check
#mypy pytablereader setup.py --ignore-missing-imports --show-error-context --show-error-codes --python-version 3.5
codespell pytablereader docs/pages examples test -q 2 --check-filenames --ignore-words-list te --exclude-file "test/data/python - Wiktionary.html"
pylama
[testenv:readme]
skip_install = true
changedir = docs
deps =
path
readmemaker>=1.1.0
commands =
python make_readme.py