awx/tox.ini
2021-06-29 11:32:59 -04:00

17 lines
223 B
INI

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