[tox] envlist = docs,linters minversion = 2.3 skipsdist = True [testenv] install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 deps = -r{toxinidir}/test-requirements.txt [testenv:docs] basepython = python3 deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -r{toxinidir}/doc/requirements.txt commands = sphinx-build -a -E -W -d doc/build/doctrees -b html doc/source doc/build/html [testenv:linters] basepython = python3 allowlist_externals = bash {toxinidir}/tools/check_projects_yaml_alphabetized.sh commands = bash -c "find {toxinidir} \ \( -name .tox -prune \) \ -o -type f -name '*.yaml' \ -print0 | xargs -0 yamllint" {toxinidir}/tools/check_projects_yaml_alphabetized.sh flake8 [testenv:pep8] basepython = python3 usedevelop = False skip_install = True commands = flake8 [testenv:venv] basepython = python3 commands = {posargs}