-
Notifications
You must be signed in to change notification settings - Fork 26
/
tox.ini
283 lines (251 loc) · 6.39 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
[tox]
envlist =
py{38,39,310,311,312},
bandit, doc8, readme,
mypy-py3,
flake8, pylint,
flake8-tests, pylint-tests,
# prone to false positives
vulture
# Additional environments:
# linters :: Runs all linters over all source code.
# linters-tests :: Runs all linters over all tests.
[testenv:default-python]
# 3.12 has pip issues, default to 3.11
basepython = python3.11
[testenv:base-command]
commands = pytest --basetemp={envtmpdir} -l --cov base64io {posargs}
[testenv]
sitepackages = False
passenv =
# Pass through PyPI variables to tell secrets-helper where to look
PYPI_SECRET_ARN TEST_PYPI_SECRET_ARN \
# Pass through twine password -- remove this once secrets-helper is fixed
# https://github.com/awslabs/secrets-helper/issues/15
TWINE_PASSWORD
deps =
-rtest/requirements.txt
py312: pip>=23.3.1
commands = pytest --basetemp={envtmpdir} -l --cov base64io {posargs}
# mypy
[testenv:mypy-common]
basepython = {[testenv:default-python]basepython}
deps =
# mypy outputs coverage data in a coverage 4.x format
coverage==4.5.4
mypy
mypy_extensions
typing
commands =
python -m mypy \
--linecoverage-report build \
src/base64io/
[testenv:mypy-coverage]
commands =
# Make mypy linecoverage report readable by coverage
python -c \
"t = open('.coverage', 'w');\
c = open('build/coverage.json').read();\
t.write('!coverage.py: This is a private format, don\'t read it directly!\n');\
t.write(c);\
t.close()"
coverage report -m
[testenv:mypy-py3]
basepython = {[testenv:mypy-common]basepython}
deps = {[testenv:mypy-common]deps}
commands =
{[testenv:mypy-common]commands}
{[testenv:mypy-coverage]commands}
# Linters
[testenv:flake8]
basepython = {[testenv:default-python]basepython}
deps =
flake8
flake8-docstrings
flake8-isort
# https://github.com/JBKahn/flake8-print/pull/30
flake8-print>=3.1.0
commands =
flake8 \
src/base64io/ \
setup.py \
doc/conf.py
[testenv:flake8-tests]
basepython = {[testenv:flake8]basepython}
deps = {[testenv:flake8]deps}
commands =
flake8 \
# Ignore F811 redefinition errors in tests (breaks with pytest-mock use)
# Ignore D103 docstring requirements for tests
--ignore F811,D103 \
test/
[testenv:blacken-src]
basepython = python3
deps =
black
commands =
black --line-length 120 \
src/base64io/ \
setup.py \
doc/conf.py \
test/
[testenv:blacken-docs]
basepython = python3
deps =
blacken-docs
commands =
blacken-docs --line-length 90 \
README.rst
[testenv:blacken]
basepython = python3
deps =
{[testenv:blacken-src]deps}
{[testenv:blacken-docs]deps}
commands =
{[testenv:blacken-src]commands}
{[testenv:blacken-docs]commands}
[testenv:black-check]
basepython = python3
deps =
{[testenv:blacken]deps}
commands =
{[testenv:blacken-src]commands} --diff
[testenv:isort-seed]
basepython = python3
deps = seed-isort-config
commands = seed-isort-config
[testenv:isort]
basepython = python3
# We need >=5.0.0 because
# several configuration settings changed with 5.0.0
deps = isort>=5.0.0
commands = isort \
src \
test \
doc \
setup.py \
{posargs}
[testenv:isort-check]
basepython = python3
deps = {[testenv:isort]deps}
commands = {[testenv:isort]commands} -c
[testenv:autoformat]
basepython = python3
deps =
{[testenv:blacken]deps}
{[testenv:isort]deps}
commands =
{[testenv:blacken]commands}
{[testenv:isort]commands}
[testenv:pylint]
basepython = {[testenv:default-python]basepython}
deps =
-rtest/requirements/modern
pyflakes
pylint
commands =
pylint \
--rcfile=src/pylintrc \
src/base64io/ \
setup.py \
doc/conf.py
[testenv:pylint-tests]
basepython = {[testenv:pylint]basepython}
deps = {[testenv:pylint]deps}
commands =
pylint \
--rcfile=test/pylintrc \
test/unit/
[testenv:doc8]
basepython = {[testenv:default-python]basepython}
deps =
sphinx
doc8
commands = doc8 doc/index.rst README.rst CHANGELOG.rst
[testenv:readme]
basepython = {[testenv:default-python]basepython}
deps = readme_renderer
commands = python setup.py check -r -s
[testenv:bandit]
basepython = {[testenv:default-python]basepython}
deps = bandit
commands = bandit -r src/base64io/
# Prone to false positives: only run independently
[testenv:vulture]
basepython = {[testenv:default-python]basepython}
deps = vulture
commands = vulture src/base64io/
[testenv:linters]
basepython = {[testenv:default-python]basepython}
deps =
{[testenv:flake8]deps}
{[testenv:pylint]deps}
{[testenv:doc8]deps}
{[testenv:readme]deps}
{[testenv:bandit]deps}
commands =
{[testenv:flake8]commands}
{[testenv:pylint]commands}
{[testenv:doc8]commands}
{[testenv:readme]commands}
{[testenv:bandit]commands}
[testenv:linters-tests]
basepython = {[testenv:default-python]basepython}
deps =
{[testenv:flake8-tests]deps}
{[testenv:pylint-tests]deps}
commands =
{[testenv:flake8-tests]commands}
{[testenv:pylint-tests]commands}
# Documentation
[testenv:docs]
basepython = {[testenv:default-python]basepython}
deps = -rdoc/requirements.txt
commands =
sphinx-build -E -c doc/ -b html doc/ doc/build/html
[testenv:docs-autobuild]
basepython = {[testenv:default-python]basepython}
deps =
{[testenv:docs]deps}
sphinx-autobuild
commands =
sphinx-autobuild -E -c {toxinidir}/doc/ -b html {toxinidir}/doc/ {toxinidir}/doc/build/html
[testenv:serve-docs]
basepython = {[testenv:default-python]basepython}
skip_install = true
changedir = doc/build/html
deps =
commands =
python -m http.server {posargs}
# Release tooling
[testenv:build]
basepython = {[testenv:default-python]basepython}
skip_install = true
deps =
wheel
setuptools
commands =
python setup.py sdist bdist_wheel
[testenv:test-release]
basepython = {[testenv:default-python]basepython}
skip_install = true
setenv =
TWINE_USERNAME = __token__
deps =
{[testenv:build]deps}
twine
commands =
{[testenv:build]commands}
twine upload --skip-existing dist/*
[testenv:release]
basepython = {[testenv:default-python]basepython}
skip_install = true
setenv =
TWINE_REPOSITORY_URL = https://test.pypi.org/legacy/
TWINE_USERNAME = __token__
deps =
{[testenv:build]deps}
twine
commands =
{[testenv:build]commands}
twine upload --skip-existing dist/*