blob: 820324d2d38d4d689c73757e0f8c0b78253b5113 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[testenv:linters]
deps =
make
black
flake8
yamllint
allowlist_externals = make
setenv =
BLACK_ARGS = --check
commands =
make black
flake8 awx awxkit awx_collection
yamllint -s .
[flake8]
select = F401,F402,F821,F823,F841
exclude = awx/ui/node_modules,awx/ui/node_modules,env,awx_collection_build
|