blob: 4991b0aa9fdab064a50d9d89101dd7c27c35977f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[tox]
isolated_build = True
[testenv:linters]
deps =
black
flake8
yamllint
allowlist_externals = make
setenv =
BLACK_ARGS = --check
PYTHON = python3
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
|