[tox] minversion = 1.6 envlist = py36,py35,py27,pep8,docs,releasenotes skipsdist = True [testenv] setenv = VIRTUAL_ENV={envdir} usedevelop = True install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -U {opts} {packages} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.pyc" -delete lockutils-wrapper stestr run --slowest {posargs} whitelist_externals = find [testenv:py27] basepython = python2.7 commands = {[testenv]commands} stestr run --slowest {posargs} [testenv:py35] basepython = python3.5 commands = {[testenv]commands} stestr run --slowest {posargs} [testenv:py36] basepython = python3.6 commands = {[testenv]commands} stestr run --slowest {posargs} [testenv:pep8] basepython = python3 commands = flake8 {posargs} [testenv:cover] basepython = python3 setenv = VIRTUAL_ENV={envdir} {[testenv]setenv} PYTHON=coverage run --source searchlight --parallel-mode commands = stestr run '^(?!.*test.*coverage).*$' coverage combine coverage html -d cover coverage xml -o cover/coverage.xml coverage report [testenv:venv] basepython = python3 commands = {posargs} [testenv:genconfig] basepython = python3 commands = oslo-config-generator --config-file etc/oslo-config-generator/searchlight.conf [testenv:genpolicy] basepython = python3 commands = oslopolicy-sample-generator --config-file etc/oslo-policy-generator/searchlight.conf [testenv:docs] basepython = python3 deps = -r{toxinidir}/doc/requirements.txt whitelist_externals = rm commands = rm -rf doc/build sphinx-build -W -b html doc/source doc/build/html [testenv:api-ref] basepython = python3 deps = -r{toxinidir}/doc/requirements.txt whitelist_externals = rm commands = rm -rf api-ref/build sphinx-build -W -b html -d api-ref/build/doctrees api-ref/source api-ref/build/html [testenv:releasenotes] basepython = python3 deps = -r{toxinidir}/doc/requirements.txt 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:debug-py27] basepython = python2.7 commands = oslo_debug_helper {posargs} [testenv:debug-py35] basepython = python3.5 commands = oslo_debug_helper {posargs} [testenv:debug-py36] basepython = python3.6 commands = oslo_debug_helper {posargs} [flake8] # TODO(dmllr): Analyze or fix the warnings blacklisted below # E711 comparison to None should be 'if cond is not None:' # E712 comparison to True should be 'if cond is True:' or 'if cond:' # H302 import only modules # H404 multi line docstring should start with a summary # H405 multi line docstring summary not separated with an empty line # H904 Wrap long lines in parentheses instead of a backslash ignore = E711,E712,H302,H404,H405,H904 exclude = .venv,.git,.tox,dist,doc,etc,*searchlight/locale*,*lib/python*,*egg,build [hacking] local-check-factory = searchlight.hacking.checks.factory import_exceptions = searchlight.i18n [testenv:lower-constraints] basepython = python3 deps = -c{toxinidir}/lower-constraints.txt -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt