summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 71cb611e90c59faae91820b2c25a4c8cbafa9bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[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