[tox] envlist = py27,pep8 minversion = 1.6 skipsdist = True [testenv] setenv = VIRTUAL_ENV={envdir} usedevelop = True install_command = pip install -r requirements.txt -U {opts} {packages} deps = -r{toxinidir}/test-requirements.txt whitelist_externals = bash commands = bash tools/pretty_tox.sh '{posargs}' [testenv:pep8] commands = flake8 [testenv:i18n] commands = python ./tools/check_i18n.py ./networking_onos ./tools/i18n_cfg.py [testenv:venv] commands = {posargs} [testenv:cover] commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:docs] commands = python setup.py build_sphinx [hacking] import_exceptions = neutron.i18n local-check-factory = neutron.hacking.checks.factory show-source = True ignore = E123,E124,E125,H803 [flake8] # H803 skipped on purpose per list discussion. # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125,H803 builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools