[tox] minversion = 1.6 skipsdist = True envlist = py27,pep8 [testenv] usedevelop = True install_command = pip install --allow-external -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY deps = -r{toxinidir}/test-requirements.txt commands = py.test -vv {posargs:fuelmenu/tests} [testenv:pep8] deps = hacking==0.10 usedevelop = False commands = flake8 {posargs:.} [testenv:venv] commands = {posargs:} [testenv:devenv] envdir = devenv usedevelop = True [flake8] ignore = H234,H302,H802 exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,__init__.py,docs show-pep8 = True show-source = True count = True [hacking] import_exceptions = testtools.matchers