-
Notifications
You must be signed in to change notification settings - Fork 87
/
tox.ini
195 lines (177 loc) · 4.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
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
[tox]
envlist =
py{39,310}-cov
code-linters
# Default testenv. Used to run tests on all python versions.
[testenv]
passenv =
CI
GITHUB_*
usedevelop =
cov: true
nocov: false
allowlist_externals =
bash
deps =
-r tests/requirements.txt
commands =
nocov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --ignore=src tests/
cov: python setup.py clean --all build_ext --force --inplace
cov: pytest -n auto -l -v --basetemp={envtmpdir} --html=report.html --cov-report=xml --cov=src tests/
# Section used to define common variables used by multiple testenvs.
[vars]
code_dirs =
setup.py \
src/ \
tests/
##############################
### AUTO-FORMATTER ###
##############################
# black is a code formatter for python: https://github.com/ambv/black.
# The following target formats python files with black formatter.
[testenv:black]
basepython = python3
skip_install = true
deps =
black
commands =
black -l 120 \
{[vars]code_dirs} \
{posargs}
# Checks that python files are correctly formatted.
[testenv:black-check]
basepython = python3
skip_install = true
deps =
{[testenv:black]deps}
commands =
{[testenv:black]commands} --check --diff
# isort is an imports sorter for python: https://github.com/timothycrosley/isort
# The following target sorts the import according to .isort.cfg file.
[testenv:isort]
basepython = python3
skip_install = true
deps =
isort
seed-isort-config
commands =
isort -w 120 \
{[vars]code_dirs} \
{posargs}
# Checks that python imports are correctly sorted.
[testenv:isort-check]
basepython = python3
skip_install = true
deps = {[testenv:isort]deps}
commands = {[testenv:isort]commands} --check --diff
# Reformats code with black and isort.
[testenv:autoformat]
basepython = python3
skip_install = true
deps =
{[testenv:isort]deps}
{[testenv:black]deps}
commands =
{[testenv:isort]commands}
{[testenv:black]commands}
#############################
### LINTERS ###
#############################
# flake8 python linter: https://github.com/PyCQA/flake8.
# flake8 config is located in .flake8 file
[testenv:flake8]
basepython = python3
skip_install = true
deps =
flake8
flake8-docstrings
flake8-bugbear
# flake8-import-order # delegated to isort
flake8-colors
pep8-naming
commands =
flake8 \
{[vars]code_dirs} \
{posargs}
# bandit security linter for python: https://github.com/PyCQA/bandit
[testenv:bandit]
basepython = python3
skip_install = true
deps =
bandit
commands =
bandit -r \
-c .bandit.ini \
--exclude tests \
{[vars]code_dirs} \
{posargs}
# checks that README file is well-formed.
[testenv:readme]
basepython = python3
skip_install = true
deps =
readme_renderer
commands =
python setup.py check -r -s
# Pylint linter for python: https://www.pylint.org/
# Pylint config is located in .pylintrc file.
[testenv:pylint]
basepython = python3
deps =
pyflakes
pylint
commands =
pylint \
{[vars]code_dirs} \
{posargs}
# Vulture finds unused code in python: https://github.com/jendrikseipp/vulture
[testenv:vulture]
basepython = python3
skip_install = true
deps =
vulture
commands =
vulture \
{[vars]code_dirs} \
{posargs}
# Static type checker for Python: http://mypy-lang.org/
[testenv:mypy]
basepython = python3
deps =
mypy
commands =
mypy \
{[vars]code_dirs} \
{posargs}
# semgrep is used to check for security issues
# https://semgrep.dev/
[testenv:semgrep]
basepython = python3
deps =
semgrep>=1.8.0
commands =
semgrep \
--config p/r2c-security-audit \
--config p/secrets \
--exclude 'third-party/**' \
--error
# Target that groups all code linters to run in Travis.
[testenv:code-linters]
basepython = python3
skip_install = true
deps =
{[testenv:black-check]deps}
{[testenv:isort-check]deps}
{[testenv:flake8]deps}
{[testenv:bandit]deps}
{[testenv:semgrep]deps}
# {[testenv:pylint]deps}
# {[testenv:readme]deps}
commands =
{[testenv:black-check]commands}
{[testenv:isort-check]commands}
{[testenv:flake8]commands}
{[testenv:bandit]commands}
{[testenv:semgrep]commands}
# {[testenv:pylint]commands}
# {[testenv:readme]commands}