awx/tox.ini

17 lines
216 B
INI

[testenv:linters]
deps =
make
black
flake8
yamllint
allowlist_externals = make
setenv =
BLACK_ARGS = --check
commands =
make black
flake8 awx
yamllint -s .
[flake8]
select = F401,F402,F821,F823,F841