forked from amazon-archives/pipeformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
408 lines (365 loc) · 11 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
[tox]
envlist =
autoformat,
py{36,37}-{local,integ,examples},
noenvvars, sourcebuildcheck,
{flake8,pylint}{,-tests,-examples},
mypy-py3,
bandit,
doc8, readme, docs,
# prone to false positives
vulture
##############################################################################################
# Additional environments: #
# #
# autoformat : Apply all autoformatters. #
# lint :: Run all linters. #
# vulture :: Run vulture. Prone to false-positives. #
# #
# Operational helper environments: #
# #
# docs :: Build Sphinx documentation. #
# autodocs :: Build Sphinx documentation and start server, autobuilding on any file changes. #
# park :: Build name-parking packages using pypi-parker. #
# build :: Build source and wheel dist files. #
# test-release :: Build dist files and upload to testpypi pypirc profile. #
# release :: Build dist files and upload to pypi pypirc profile. #
##############################################################################################
##############
# Manual Run #
##############
[testenv:run]
basepython = python3
passenv = {[testenv]passenv}
sitepackages = False
commands = pipeformer {posargs}
#########
# Tests #
#########
[testenv:base-command]
commands = pytest --basetemp={envtmpdir} -l --cov pipeformer {posargs}
[testenv]
passenv =
# Pass through AWS credentials
AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN \
# Pass through AWS profile name (useful for local testing)
AWS_PROFILE \
# Pass through the default AWS region (used for integration tests)
AWS_DEFAULT_REGION
sitepackages = False
deps = -rtest/requirements.txt
commands =
# Local tests: no network access required
local: {[testenv:base-command]commands} test/ -m local
# Integration tests: requires network access and might require service credentials
integ: {[testenv:base-command]commands} test/ -m integ
# Acceptance tests: testing against static test vectors : same requirements as integ
accept: {[testenv:base-command]commands} test/ -m accept
# Test the examples : same requirements as integ
examples: {[testenv:base-command]commands} examples/test/ -m examples
# Run all known tests : same requirements as integ
all: {[testenv:base-command]commands} test/ examples/test/
# You decide what tests to run
manual: {[testenv:base-command]commands}
# Verify that local tests work without environment variables present
[testenv:noenvvars]
basepython = python3
sitepackages = False
deps = {[testenv]deps}
commands = {[testenv:base-command]commands} test/ -m local
# Verify that tests can be successfully run from the source build.
[testenv:sourcebuildcheck]
basepython = python3
sitepackages = False
recreate = True
deps =
{[testenv:build]deps}
commands =
{[testenv:build]commands}
{toxinidir}/test/source-build-check.sh {envtmpdir} {toxinidir}/dist
###############
# Type checks #
###############
[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-common]
basepython = python3
deps =
coverage
mypy>=0.650
mypy_extensions
typing>=3.6.2
[testenv:mypy-py3]
basepython = {[testenv:mypy-common]basepython}
deps = {[testenv:mypy-common]deps}
commands =
python -m mypy \
--linecoverage-report build \
src/pipeformer/ \
{posargs}
{[testenv:mypy-coverage]commands}
###############################
# Formatting and style checks #
###############################
[testenv:flake8]
basepython = python3
deps =
flake8
flake8-docstrings
flake8-isort
flake8-print>=3.1.0
flake8-bugbear
commands =
flake8 \
src/pipeformer/ \
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 F841 local variable assigned but never used (useful for collecting locals for test reports)
# Ignore D101,D102,D103 docstring requirements for tests
--ignore F811,F841,D101,D102,D103 \
test/
[testenv:flake8-examples]
basepython = {[testenv:flake8]basepython}
deps = {[testenv:flake8]deps}
commands =
flake8 \
examples/src/
flake8 \
# Ignore F811 redefinition errors in tests (breaks with pytest-mock use)
# Ignore F841 local variable assigned but never used (useful for collecting locals for test reports)
# Ignore D101,D102,D103 docstring requirements for tests
--ignore F811,F841,D101,D102,D103 \
examples/test/
[testenv:pylint]
basepython = python3
deps =
{[testenv]deps}
pyflakes
pylint>=2.0.0
commands =
pylint \
--rcfile=src/pylintrc \
src/pipeformer/ \
setup.py \
doc/conf.py
[testenv:pylint-tests]
basepython = {[testenv:pylint]basepython}
deps = {[testenv:pylint]deps}
commands =
pylint \
--rcfile=test/pylintrc \
test/unit/ \
test/functional/ \
test/integration/
[testenv:pylint-examples]
basepython = {[testenv:pylint]basepython}
deps = {[testenv:pylint]deps}
commands =
pylint --rcfile=examples/src/pylintrc examples/src/
pylint --rcfile=examples/test/pylintrc examples/test/
[testenv:bandit]
basepython = python3
deps = bandit
commands = bandit \
# B322: Ignore Python 2 input check: we only support Python 3
-s B322 \
-r src/pipeformer/
# Prone to false positives: only run manually
[testenv:vulture]
basepython = python3
deps = vulture
commands = vulture src/pipeformer/
[testenv:blacken-src]
basepython = python3
deps =
black
commands =
black --line-length 120 \
src/pipeformer/ \
setup.py \
doc/conf.py \
test/ \
examples/ \
{posargs}
[testenv:blacken]
basepython = python3
deps =
{[testenv:blacken-src]deps}
commands =
{[testenv:blacken-src]commands}
[testenv:isort-seed]
basepython = python3
deps = seed-isort-config
commands = seed-isort-config
[testenv:isort]
basepython = python3
deps = isort
commands = isort \
-rc \
src \
test \
examples \
doc \
setup.py \
{posargs}
[testenv:autoformat]
basepython = python3
deps =
{[testenv:isort-seed]deps}
{[testenv:isort]deps}
{[testenv:blacken]deps}
commands =
{[testenv:isort-seed]commands}
{[testenv:isort]commands}
{[testenv:blacken]commands}
[testenv:doc8]
basepython = python3
whitelist_externals = {[testenv:resetdocs]whitelist_externals}
deps =
sphinx
doc8
commands =
{[testenv:resetdocs]commands}
doc8 doc/index.rst doc/lib/ README.rst CHANGELOG.rst
[testenv:readme]
basepython = python3
deps = readme_renderer
commands = python setup.py check -r -s
[testenv:lint]
basepython = python3
whitelist_externals = {[testenv:resetdocs]whitelist_externals}
deps =
{[testenv:autoformat]deps}
{[testenv:flake8]deps}
{[testenv:flake8-tests]deps}
{[testenv:flake8-examples]deps}
{[testenv:pylint]deps}
{[testenv:pylint-tests]deps}
{[testenv:pylint-examples]deps}
{[testenv:doc8]deps}
{[testenv:readme]deps}
{[testenv:bandit]deps}
commands =
{[testenv:autoformat]commands}
{[testenv:flake8]commands}
{[testenv:flake8-tests]commands}
{[testenv:flake8-examples]commands}
{[testenv:pylint]commands}
{[testenv:pylint-tests]commands}
{[testenv:pylint-examples]commands}
{[testenv:doc8]commands}
{[testenv:readme]commands}
{[testenv:bandit]commands}
#################
# Documentation #
#################
# Clear out any generated files from doc/
[testenv:resetdocs]
skip_install = true
deps =
whitelist_externals =
mkdir
rm
commands =
# Make sure that the directory exists to avoid
# potential side effects of using rm -f
mkdir -p {toxinidir}/doc/lib/generated
rm -r {toxinidir}/doc/lib/generated
[testenv:assert-file-is-empty]
basepython = python3
commands =
python -c \
"import sys;\
f = open(sys.argv[-1], 'r');\
contents = f.read();\
sys.exit(contents if contents.strip() else 0);\
f.close()" \
{posargs}
[testenv:docs-build]
basepython = python3
deps = {[testenv:docs]deps}
commands =
sphinx-build -E -c {toxinidir}/doc/ -b html {toxinidir}/doc/ {toxinidir}/doc/build/html
{[testenv:assert-file-is-empty]commands} "{toxinidir}/doc/build/html/output.txt"
[testenv:docs-spelling]
basepython = python3
deps = {[testenv:docs]deps}
commands =
sphinx-build -E -c {toxinidir}/doc/ -b spelling {toxinidir}/doc/ {toxinidir}/doc/build/spelling
{[testenv:assert-file-is-empty]commands} "{toxinidir}/doc/build/spelling/output.txt"
[testenv:docs-linkcheck]
basepython = python3
deps = {[testenv:docs]deps}
commands =
sphinx-build -E -c {toxinidir}/doc/ -b linkcheck {toxinidir}/doc/ {toxinidir}/doc/build/linkcheck
{[testenv:assert-file-is-empty]commands} "{toxinidir}/doc/build/linkcheck/output.txt"
[testenv:docs]
basepython = python3
deps =
{[testenv]deps}
-r{toxinidir}/doc/requirements.txt
commands =
{[testenv:docs-build]commands}
{[testenv:docs-spelling]commands}
{[testenv:docs-linkcheck]commands}
[testenv:autodocs]
basepython = python3
deps =
{[testenv:docs]deps}
sphinx-autobuild
commands =
sphinx-autobuild -E -c {toxinidir}/doc/ -b html {toxinidir}/doc/ {toxinidir}/doc/build/html
###################
# Release tooling #
###################
[testenv:park]
basepython = python3
skip_install = true
deps =
pypi-parker
setuptools
commands = python setup.py park
[testenv:build]
basepython = python3
skip_install = true
deps =
wheel
setuptools
commands =
python setup.py sdist bdist_wheel
[testenv:test-release]
basepython = python3
skip_install = true
deps =
{[testenv:park]deps}
{[testenv:build]deps}
twine
commands =
{[testenv:park]commands}
{[testenv:build]commands}
twine upload --skip-existing --repository testpypi dist/*
[testenv:release]
basepython = python3
skip_install = true
deps =
{[testenv:park]deps}
{[testenv:build]deps}
twine
commands =
{[testenv:park]commands}
{[testenv:build]commands}
twine upload --skip-existing --repository pypi dist/*