mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
27 lines
674 B
INI
27 lines
674 B
INI
[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,E265,E266,F541,W605,E722,F822,F523,W291,F405
|
|
exclude = awx/ui/node_modules,awx/ui/node_modules,env,awx_collection_build
|
|
|
|
[testenv:docs]
|
|
description = Build documentation
|
|
deps = -r{toxinidir}/docs/docsite/requirements.txt
|
|
commands =
|
|
sphinx-build -T -E -W -n --keep-going {tty:--color} -j auto -c docs/docsite -d docs/docsite/build/doctrees -b html docs/docsite/rst docs/docsite/build/html
|