-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
112 lines (99 loc) · 2.98 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
[flake8]
# Use the more relaxed max line length permitted in PEP8.
max-line-length = 119
# This ignore is required by black.
extend-ignore = E203
extend-exclude = venv,python-blueprint
ignore = E111
per-file-ignores =
# imported but unused
__init__.py: F401
# This is the configuration for the tox-gh-actions plugin for GitHub Actions
# https://github.com/ymyzk/tox-gh-actions
# This section is not needed if not using GitHub Actions for CI.
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39, fmt-check, lint, type-check
3.10, py310
[tox]
# These are the default environments that will be run
# when ``tox`` is run without arguments.
envlist =
fmt-check
lint
type-check
py{36,37,38,39,310}
skip_missing_interpreters = true
# Activate isolated build environment. tox will use a virtual environment
# to build a source distribution from the source tree. For build tools and
# arguments use the pyproject.toml file as specified in PEP-517 and PEP-518.
isolated_build = true
[testenv]
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
# Use -bb to enable BytesWarnings as error to catch str/bytes misuse.
# Use -Werror to treat warnings as errors.
{envpython} -bb -Werror -m pytest \
--cov="{envsitepackagesdir}/json_expand_o_matic" --cov-report=html --cov-report=term {posargs} \
{toxinidir}/tests/
[testenv:type-check]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
mypy {toxinidir}/src/ {toxinidir}/tests/
[testenv:lint]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
flake8 {toxinidir}/src/ {toxinidir}/tests/
[testenv:docs]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
changedir = {toxinidir}/docs
commands =
{envpython} clean_docs.py
sphinx-apidoc --force --output-dir apidoc {toxinidir}/src/json_expand_o_matic
sphinx-build -a -W . _build
[testenv:fmt-check]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
isort --line-length 119 --profile black --check-only {toxinidir}/src/ {toxinidir}/tests/
black --line-length 119 --check {toxinidir}/src/ {toxinidir}/tests/
[testenv:licenses]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
pip-licenses
commands =
pip-licenses {posargs}
# Code Maintenance
# tox -e fmt # to format the code
# tox -e deps # to update *requirements.txt from *requirements.in
[testenv:fmt]
skip_install = true
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands =
isort --line-length 119 --profile black {toxinidir}/src/ {toxinidir}/tests/
black --line-length 119 {toxinidir}/src/ {toxinidir}/tests/
[testenv:deps]
skip_install = true
deps =
pip-tools
commands =
pip-compile --resolver=backtracking dev-requirements.in