-
Notifications
You must be signed in to change notification settings - Fork 52
/
tox.ini
32 lines (27 loc) · 848 Bytes
/
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
[flake8]
import-order-style = google
application-import-names =
container_service_extension,
container_service_extension.client
# H101: Use TODO(NAME)
# H238: Old style class declaration, use new style (inherit from object)
ignore = H101,
H238,
H306,
D100, D101, D102, D103, D104, D105, D106, D107,
D207,
D301,
E261,
W503, # line break not allowed before binary operator
exclude = container_service_extension/lib/pksclient/*.*, container_service_extension/lib/uaaclient/*.*, container_service_extension/client/tkgclient/*.*
[pep8]
# E261: At least two spaces before inline comment
ignore = E261
[tox]
envlist=flake8
[testenv]
deps =
-rtest-requirements.txt
[testenv:flake8]
deps = {[testenv]deps}
commands = flake8 container_service_extension system_tests system_tests_v2