-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtox.ini
67 lines (62 loc) · 1.51 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
[tox]
envlist =
default
minversion = 3.15
[testenv]
description = invoke pytest to run automated tests
passenv =
HOME
setenv =
TOXINIDIR = {toxinidir}
extras =
testing
commands =
pytest {posargs}
isolated_build = True
[testenv:{clean,build}]
description =
Build (or clean) the package in isolation according to instructions in:
https://setuptools.readthedocs.io/en/latest/build_meta.html#how-to-use-it
https://github.com/pypa/pep517/issues/91
https://github.com/pypa/build
skip_install = true
deps =
build: build
changedir = {toxinidir}
commands =
clean: python -c 'from shutil import rmtree; rmtree("build", True); rmtree("dist", True)'
build: python -m build .
[testenv:fmt]
description = Linter and formatter
deps =
black
isort
commands =
isort src tests
black src tests
[testenv:check]
description = Linter and formatter
deps =
black
flake8
isort
commands =
isort src tests --check-only --verbose
black src tests --check --verbose
flake8 src tests
[testenv:publish]
description =
Publish the package you have been developing to a package index server.
By default, it uses testpypi. If you really want to publish your package
to be publicly accessible in PyPI, use the `-- --repository pypi` option.
passenv =
TWINE_PASSWORD
TWINE_REPOSITORY
TWINE_USERNAME
skip_install = true
deps =
twine
changedir = {toxinidir}
commands =
python -m twine check dist/*
python -m twine upload {posargs:--repository testpypi} dist/*