mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 15:02:07 -03:30
black does *not* warn about missing or extraneous imports, so let's bring back flake8 in our linting to check for them
14 lines
206 B
INI
14 lines
206 B
INI
[testenv:linters]
|
|
deps =
|
|
make
|
|
black
|
|
flake8
|
|
yamllint
|
|
allowlist_externals = make
|
|
setenv =
|
|
BLACK_ARGS = --check
|
|
commands =
|
|
make black
|
|
flake8 awx --select=F401,F402,F821,F823,F841
|
|
yamllint -s .
|