abc0bec54e
The new stable upper-constraints file is only available after the openstack/requirements repository is branched. This will happen around the RC1 timeframe Recheck and merge this change once the requirements repository has been branched. The CI system will work with this patch before the requirements repository is branched because zuul configues the job to run with a local copy of the file and defaults to the master branch. However, accepting the patch will break the test configuration on developers' local systems, so please wait until after the requirements repository is branched to merge the patch. Change-Id: Ie90df27ddc33ddbcea9fce42c5561562b6d80973
112 lines
2.9 KiB
INI
112 lines
2.9 KiB
INI
[tox]
|
|
envlist = py35,py27,pep8,docs
|
|
minversion = 2.0
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
install_command = pip install {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
passenv = TRACE_FAILONLY GENERATE_HASHES http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
usedevelop = True
|
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = sh
|
|
commands =
|
|
stestr run {posargs}
|
|
stestr slowest
|
|
# 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:common]
|
|
# Fake job to define environment variables shared between dsvm/non-dsvm jobs
|
|
setenv = {[testenv]setenv}
|
|
OS_TEST_TIMEOUT=180
|
|
commands = false
|
|
|
|
[testenv:functional]
|
|
basepython = python3
|
|
setenv = {[testenv]setenv}
|
|
{[testenv:common]setenv}
|
|
OS_TEST_PATH=./vmware_nsxlib/tests/functional
|
|
OS_LOG_PATH={env:OS_LOG_PATH:/opt/stack/logs}
|
|
deps =
|
|
{[testenv]deps}
|
|
-r{toxinidir}/vmware_nsxlib/tests/functional/requirements.txt
|
|
|
|
[testenv:dsvm-functional]
|
|
basepython = python3
|
|
setenv = {[testenv]setenv}
|
|
OS_SUDO_TESTING=1
|
|
OS_FAIL_ON_MISSING_DEPS=1
|
|
OS_TEST_TIMEOUT=180
|
|
sitepackages=True
|
|
deps =
|
|
{[testenv:functional]deps}
|
|
commands =
|
|
|
|
[tox:jenkins]
|
|
sitepackages = True
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
deps =
|
|
{[testenv]deps}
|
|
commands =
|
|
# Checks for coding and style guidelines
|
|
flake8
|
|
{[testenv:genconfig]commands}
|
|
whitelist_externals =
|
|
sh
|
|
bash
|
|
|
|
[testenv:bandit]
|
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = bandit -r vmware_nsxlib -n 5 -ll
|
|
|
|
[testenv:cover]
|
|
basepython = python3
|
|
commands =
|
|
python setup.py test --coverage --coverage-package-name=vmware_nsxlib --testr-args='{posargs}'
|
|
coverage report
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
basepython = python3
|
|
commands = sphinx-build -W -b html doc/source doc/build/html
|
|
|
|
[flake8]
|
|
# E125 continuation line does not distinguish itself from next logical line
|
|
# E129 visually indented line with same indent as next logical line
|
|
# N530 direct neutron imports not allowed
|
|
# N531 translations hints
|
|
ignore = N530,E125,E129,N531
|
|
show-source = true
|
|
builtins = _
|
|
exclude = build,dist
|
|
import-order-style = pep8
|
|
|
|
[hacking]
|
|
import_exceptions = vmware_nsxlib._i18n
|
|
|
|
[testenv:genconfig]
|
|
commands =
|
|
|
|
[testenv:uuidgen]
|
|
commands =
|
|
check-uuid --fix
|
|
|
|
[testenv:lower-constraints]
|
|
basepython = python3
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|