[tox] envlist = py27,py35,pep8 minversion = 1.6 skipsdist = True [testenv] usedevelop = True install_command = pip install -c {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -r requirements.txt -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning deps = -r{toxinidir}/test-requirements.txt -egit+https://git.openstack.org/openstack/neutron.git#egg=neutron whitelist_externals = sh commands = python setup.py testr --slowest --testr-args='{posargs}' [testenv:pep8] commands = flake8 neutron-db-manage --subproject networking-arista check_migration [testenv:venv] commands = {posargs} [testenv:cover] commands = python setup.py testr --coverage --testr-args='{posargs}' [testenv:docs] commands = python setup.py build_sphinx [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,*lib/python*,*egg,build [hacking] import_exceptions = networking_arista._i18n