forked from thombashi/tcconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
74 lines (66 loc) · 1.31 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
[tox]
envlist =
py{35,36,37,38}
buildwhl
clean
docs
fmt
lint
readme
release
[testenv]
deps =
.[test]
commands =
pytest -v -m 'not xfail' {posargs}
[testenv:buildwhl]
basepython = python3.7
deps =
twine
wheel
commands =
python setup.py sdist bdist_wheel
twine check dist/*.whl dist/*.tar.gz
python setup.py clean --all
[testenv:clean]
deps =
cleanpy
commands =
cleanpy --all --exclude-envs .
[testenv:docs]
basepython = python3.7
deps =
-r{toxinidir}/requirements/docs_requirements.txt
commands =
python setup.py build_sphinx --source-dir=docs/ --build-dir=docs/_build --all-files
[testenv:fmt]
basepython = python3.7
deps =
autoflake
black
isort>=5
commands =
autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports .
isort .
black setup.py test tcconfig
[testenv:lint]
basepython = python3.7
deps =
mypy>=0.782
pylama
commands =
python setup.py check
-mypy tcconfig setup.py --ignore-missing-imports --show-error-context --show-error-codes --python-version 3.5
-pylama
[testenv:readme]
changedir = docs
deps =
path
readmemaker>=1.0.0
commands =
python make_readme.py
[testenv:release]
deps =
releasecmd>=0.2.0
commands =
python setup.py release --sign {posargs}