blob: e71d910bc97677106e0109a8d7302a5123b17359 (
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,F811
exclude = awx/ui/node_modules,awx/ui/node_modules,env,awx_collection_build
|