[tox] minversion = 2.0 envlist = py34,py27,pep8 skipsdist = True [testenv] usedevelop = True passenv = TRACE_FAILONLY install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = ostestr --regex '{posargs}' [testenv:pep8] commands = flake8 [testenv:venv] commands = {posargs} [testenv:cover] commands = python setup.py test --coverage --coverage-package-name=neutron_lib --testr-args='{posargs}' coverage report [testenv:docs] commands = sphinx-build -W -b html doc/source doc/build/html [testenv:debug] commands = oslo_debug_helper {posargs} [flake8] # E128 continuation line under-indented for visual indent ignore = E128 show-source = True exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build [hacking] import_exceptions = neutron_lib._i18n