From c3b2c2a9a22bac5cf17813c589444d3abebaa23b Mon Sep 17 00:00:00 2001 From: Wojciech Dec Date: Tue, 16 Aug 2016 19:27:01 +0200 Subject: Adding Mitaka networking-old module with the ODL topology based port binding resolution mechanism from https://review.openstack.org/333186 Change-Id: I10d400aac9bb639c146527f0f93e6925cb74d9de Signed-off-by: Wojciech Dec --- networking-odl/tox.ini | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 networking-odl/tox.ini (limited to 'networking-odl/tox.ini') diff --git a/networking-odl/tox.ini b/networking-odl/tox.ini new file mode 100644 index 0000000..644dbf3 --- /dev/null +++ b/networking-odl/tox.ini @@ -0,0 +1,72 @@ +[tox] +envlist = docs,py35,py34,py27,pep8 +minversion = 1.6 +skipsdist = True + +[testenv] +setenv = VIRTUAL_ENV={envdir} + PYTHONWARNINGS=default::DeprecationWarning +passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY +usedevelop = True +install_command = pip install -r requirements.txt -U {opts} {packages} +deps = -egit+https://git.openstack.org/openstack/neutron#egg=neutron + -egit+https://git.openstack.org/openstack/neutron-fwaas#egg=neutron-fwaas + -egit+https://git.openstack.org/openstack/neutron-lbaas#egg=neutron-lbaas + -egit+https://git.openstack.org/openstack/networking-l2gw#egg=networking-l2gw + -r{toxinidir}/test-requirements.txt +whitelist_externals = bash +commands = bash tools/pretty_tox.sh '{posargs}' + +[testenv:pep8] +commands = + flake8 + doc8 doc/source devstack releasenotes/source rally-jobs + neutron-db-manage --subproject networking-odl check_migration + +[testenv:i18n] +commands = python ./tools/check_i18n.py ./networking_odl ./tools/i18n_cfg.py + +[testenv:venv] +# NOTE(yamahata): translation job can't use zuul-cloner or upper-constraints +install_command = pip install -U {opts} {packages} +commands = {posargs} + +[testenv:cover] +commands = + python setup.py test --coverage --coverage-package-name=networking_odl --testr-args='{posargs}' + coverage report + +[testenv:docs] +commands = + doc8 doc/source devstack releasenotes/source rally-jobs + python setup.py build_sphinx + +[testenv:debug] +commands = oslo_debug_helper -t networking_odl/tests {posargs} + +[hacking] +import_exceptions = networking_odl._i18n +local-check-factory = neutron_lib.hacking.checks.factory + +[doc8] +# File extensions to check +extensions = .rst + +[flake8] +# H803 skipped on purpose per list discussion. +# E123, E125 skipped as they are invalid PEP-8. +# TODO(dougwig) -- uncomment this to test for remaining linkages +# N530 direct neutron imports not allowed +show-source = True +ignore = E123,E125,H803,N530 +exclude=./.*,dist,doc,releasenotes,*lib/python*,*egg,build,tools + +[testenv:genconfig] +deps = -r{toxinidir}/requirements.txt +commands = + mkdir -p etc/neutron/plugins/ml2 + oslo-config-generator --namespace ml2_odl --output-file etc/neutron/plugins/ml2/ml2_conf_odl.ini.sample +whitelist_externals = mkdir + +[testenv:releasenotes] +commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html -- cgit 1.2.3-korg