[tox] minversion = 1.6 envlist = py36,py35,py27,pypy,pep8 skipsdist = True [testenv] usedevelop = True install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} OS_DEBUG=1 OS_LOG_CAPTURE=1 deps = -r{toxinidir}/test-requirements.txt commands = python setup.py testr --slowest --testr-args='{posargs}' [testenv:pep8] basepython = python3 commands = flake8 [testenv:venv] basepython = python3 commands = {posargs} [testenv:cover] basepython = python3 commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:docs] basepython = python3 commands = python setup.py build_sphinx [flake8] # Hacking ignored becaues its rules are too zealous and cause more # grief than value. # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125,H builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build