[tox] minversion = 3.2.1 envlist = py3,pep8 skipsdist = True ignore_basepython_conflict=true [testenv] basepython = python3 usedevelop = True allowlist_externals = bash find rm env make install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:pep8] commands = flake8 {posargs} [testenv:venv] commands = {posargs} [testenv:cover] envdir = {toxworkdir}/shared setenv = {[testenv]setenv} PYTHON=coverage run --source venusclient --parallel-mode commands = coverage erase stestr run {posargs} coverage combine coverage html -d cover coverage xml -o cover/coverage.xml coverage report [testenv:docs] commands = sphinx-build -W -b html doc/source doc/build/html [testenv:releasenotes] commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [testenv:debug] commands = oslo_debug_helper {posargs} [testenv:osc_plugins] deps = -c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/requirements.txt ../../x/pbrx whitelist_externals = bash commands = # bash wrapper is required to handle a subshell of find. bash ./tests/install-siblings.sh pbr freeze openstack --version python tests/check_osc_commands.py [flake8] # E123, E125 skipped as they are invalid PEP-8. # W504 line break after binary operator # E402 module level import not at top of file show-source = True ignore = E123,E125,W504,E402 builtins = _ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build