Files
deb-networking-odl/tox.ini
Isaku Yamahata 7039efbacd tox: add bash to externals for pep8 and bashate
Change-Id: Ie268b68be29d6d6fdc134345fc85e93639028950
2017-06-27 14:00:22 +00:00

124 lines
4.0 KiB
INI

[tox]
envlist = docs,py35,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
OS_FAIL_ON_MISSING_DEPS OS_POST_MORTEM_DEBUGGER TRACE_FAILONLY
OS_TEST_DBAPI_ADMIN_CONNECTION
usedevelop = True
install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
whitelist_externals = bash
commands = {toxinidir}/tools/ostestr_compat_shim.sh {posargs}
# there is also secret magic in ostestr which lets you run in a fail only
# mode. To do this define the TRACE_FAILONLY environmental variable.
[testenv:dsvm]
# Fake job to define environment variables shared between dsvm jobs
setenv = OS_SUDO_TESTING=1
OS_FAIL_ON_MISSING_DEPS=1
OS_LOG_PATH={env:OS_LOG_PATH:/opt/stack/logs}
commands = false
[testenv:functional]
setenv = {[testenv]setenv}
OS_TEST_PATH=./networking_odl/tests/functional
deps = {[testenv]deps}
-r{toxinidir}/networking_odl/tests/functional/requirements.txt
[testenv:dsvm-functional]
basepython = python2.7
setenv = {[testenv:functional]setenv}
{[testenv:dsvm]setenv}
deps =
{[testenv:functional]deps}
[testenv:fullstack]
setenv = {[testenv]setenv}
OS_TEST_TIMEOUT=180
OS_TEST_PATH=./networking_odl/tests/fullstack
commands = ostestr '{posargs}'
deps = {[testenv]deps}
-r{toxinidir}/networking_odl/tests/fullstack/requirements.txt
[testenv:dsvm-fullstack]
setenv = {[testenv:fullstack]setenv}
{[testenv:dsvm]setenv}
commands = ostestr '{posargs}'
deps =
{[testenv:fullstack]deps}
[testenv:pep8]
commands =
flake8
doc8 doc/source devstack releasenotes/source rally-jobs
neutron-db-manage --subproject networking-odl check_migration
{[testenv:genconfig]commands}
{[testenv:bashate]commands}
whitelist_externals =
bash
mkdir
[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 -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
commands = {posargs}
[testenv:cover]
commands =
python setup.py test --coverage --coverage-package-name=networking_odl --testr-args='{posargs}'
coverage report --fail-under=80 --skip-covered
[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]
# TODO(dougwig) -- uncomment this to test for remaining linkages
# N530 direct neutron imports not allowed
show-source = True
ignore = N530
exclude=./.*,dist,doc,releasenotes,*lib/python*,*egg,build,tools
[testenv:bashate]
commands = bash -c "find {toxinidir} \
-not \( -type d -name .\* -prune \) \
-type f \
-name \*.sh \
# E005 file does not begin with #! or have a .sh prefix
# E006 check for lines longer than 79 columns
# E042 local declaration hides errors
# E043 Arithmetic compound has inconsistent return semantics
-print0 | xargs -0 bashate -v -iE006 -eE005,E042,E043"
whitelist_externals = bash
[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