You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.3 KiB
120 lines
3.3 KiB
[tox] |
|
envlist = py37,pep8 |
|
minversion = 2.0 |
|
skipsdist = True |
|
|
|
[testenv] |
|
install_command = pip install {opts} {packages} |
|
basepython = python3 |
|
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://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-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] |
|
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] |
|
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] |
|
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://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r{toxinidir}/test-requirements.txt |
|
commands = bandit -r vmware_nsxlib -n 5 -ll |
|
|
|
[testenv:cover] |
|
envdir = {toxworkdir}/shared |
|
setenv = {[testenv]setenv} |
|
PYTHON=coverage run --source vmware_nsxlib --parallel-mode |
|
commands = |
|
coverage erase |
|
stestr run {posargs} |
|
stestr slowest |
|
coverage combine |
|
coverage report --skip-covered |
|
coverage html -d cover |
|
coverage xml -o cover/coverage.xml |
|
|
|
[testenv:venv] |
|
commands = {posargs} |
|
|
|
[testenv:docs] |
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} |
|
-r{toxinidir}/doc/requirements.txt |
|
commands = sphinx-build -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 |
|
# E741 ambiguous variable name |
|
# N530 direct neutron imports not allowed |
|
# W504 line break after binary operator |
|
# N531 translations hints |
|
# I202 Additional newline in a group of imports |
|
ignore = N530,E125,E129,E741,N531,W504,I202 |
|
show-source = true |
|
builtins = _ |
|
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,.ropeproject |
|
import-order-style = pep8 |
|
|
|
[hacking] |
|
import_exceptions = vmware_nsxlib._i18n |
|
|
|
[testenv:genconfig] |
|
commands = |
|
|
|
[testenv:uuidgen] |
|
commands = |
|
check-uuid --fix |
|
|
|
[testenv:lower-constraints] |
|
deps = |
|
-c{toxinidir}/lower-constraints.txt |
|
-r{toxinidir}/test-requirements.txt |
|
-r{toxinidir}/doc/requirements.txt |
|
-r{toxinidir}/requirements.txt
|
|
|