
Some of available checks are disabled by default, like:[H106] Don’t put vim configuration in source files[H203] Use assertIs(Not)None to check for None Change-Id: I3891fb42fe26d0edfbf85fddd2da5d8ff7739202 story: 2001301 task: 5852
149 lines
4.4 KiB
INI
149 lines
4.4 KiB
INI
[tox]
|
||
minversion = 1.6
|
||
envlist = docs,py35,py27,functional,pep8,specs
|
||
skipsdist = True
|
||
|
||
[testenv]
|
||
usedevelop = True
|
||
setenv = VIRTUAL_ENV={envdir}
|
||
PYTHONWARNINGS=default::DeprecationWarning
|
||
install_command =
|
||
pip install -U -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
||
whitelist_externals = find
|
||
deps = -r{toxinidir}/requirements.txt
|
||
-r{toxinidir}/test-requirements.txt
|
||
commands =
|
||
{toxinidir}/tools/ostestr_compat_shim.sh {posargs}
|
||
|
||
[testenv:api-ref]
|
||
# This environment is called from CI scripts to test and publish
|
||
# the API Ref to developer.openstack.org.
|
||
whitelist_externals = rm
|
||
commands =
|
||
rm -rf api-ref/build
|
||
sphinx-build -W -b html -d api-ref/build/doctrees api-ref/source api-ref/build/html
|
||
|
||
[testenv:cover]
|
||
whitelist_externals = sh
|
||
commands =
|
||
coverage erase
|
||
sh -c 'COVERAGE_FILE={toxinidir}/.coverage-py27 python setup.py testr --coverage --testr-args='{posargs}''
|
||
sh -c 'COVERAGE_FILE={toxinidir}/.coverage-functional OS_TEST_PATH={toxinidir}/octavia/tests/functional python setup.py testr --coverage --testr-args='{posargs}''
|
||
coverage combine {toxinidir}/.coverage-py27 {toxinidir}/.coverage-functional
|
||
coverage report --fail-under=80 --skip-covered
|
||
# Generate a new HTML report with the combined results
|
||
# otherwise the HTML report will only show partial results
|
||
coverage html -d cover
|
||
|
||
[testenv:functional]
|
||
setenv = OS_TEST_PATH={toxinidir}/octavia/tests/functional
|
||
|
||
[testenv:functional-py35]
|
||
basepython = python3.5
|
||
setenv = OS_TEST_PATH={toxinidir}/octavia/tests/functional
|
||
|
||
[testenv:debug]
|
||
commands = oslo_debug_helper {posargs}
|
||
|
||
[testenv:debug-py27]
|
||
basepython = python2.7
|
||
commands = oslo_debug_helper {posargs}
|
||
|
||
[testenv:debug-py35]
|
||
basepython = python3.5
|
||
commands = oslo_debug_helper {posargs}
|
||
|
||
[testenv:pep8]
|
||
commands = flake8
|
||
# RST linter
|
||
doc8 specs doc/source octavia \
|
||
CONSTITUTION.rst HACKING.rst README.rst TESTING.rst
|
||
# Run security linter
|
||
bandit -r octavia -ll -ii -x octavia/tests
|
||
# Make sure specs follow our template
|
||
find . -type f -name "*.pyc" -delete
|
||
python -m unittest specs-tests.test_titles
|
||
sh ./tools/misc-sanity-checks.sh
|
||
{toxinidir}/tools/coding-checks.sh --pylint '{posargs}'
|
||
whitelist_externals =
|
||
sh
|
||
find
|
||
|
||
[testenv:docs]
|
||
whitelist_externals = rm
|
||
commands =
|
||
rm -rf doc/build api-guide/build api-ref/build
|
||
python setup.py build_sphinx
|
||
sphinx-build -W -b html api-ref/source api-ref/build/html
|
||
|
||
[testenv:venv]
|
||
commands = {posargs}
|
||
|
||
[testenv:genconfig]
|
||
whitelist_externals = mkdir
|
||
commands =
|
||
mkdir -p etc/octavia
|
||
oslo-config-generator --output-file etc/octavia/octavia.conf.sample \
|
||
--namespace octavia \
|
||
--namespace oslo.db \
|
||
--namespace oslo.log \
|
||
--namespace oslo.messaging \
|
||
--namespace keystonemiddleware.auth_token
|
||
|
||
[testenv:genpolicy]
|
||
whitelist_externals = mkdir
|
||
commands =
|
||
mkdir -p etc/octavia
|
||
oslopolicy-sample-generator \
|
||
--config-file etc/policy/octavia-policy-generator.conf \
|
||
--output-file etc/octavia/json.policy.sample
|
||
|
||
[testenv:specs]
|
||
whitelist_externals =
|
||
rm
|
||
find
|
||
commands =
|
||
find . -type f -name "*.pyc" -delete
|
||
python -m unittest specs-tests.test_titles
|
||
|
||
|
||
[testenv:bandit]
|
||
commands = bandit -r octavia -ll -ii -x octavia/tests {posargs}
|
||
|
||
[flake8]
|
||
ignore =
|
||
show-source = true
|
||
builtins = _
|
||
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|
||
import-order-style = pep8
|
||
# [H106]: Don’t put vim configuration in source files
|
||
# [H203]: Use assertIs(Not)None to check for None
|
||
# [H904] Delay string interpolations at logging calls.
|
||
enable-extensions=H106,H203,H904
|
||
|
||
[hacking]
|
||
import_exceptions = octavia.i18n
|
||
local-check-factory = octavia.hacking.checks.factory
|
||
|
||
[doc8]
|
||
max-line-length = 79
|
||
|
||
[testenv:releasenotes]
|
||
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||
|
||
# If you are running the tests locally you should set the env variable
|
||
# TEMPEST_CONFIG_DIR=/opt/stack/tempest/etc
|
||
[testenv:apiv1]
|
||
passenv = TEMPEST_CONFIG_DIR
|
||
setenv =
|
||
OS_TEST_PATH={toxinidir}/octavia/tests/tempest/v1/api
|
||
OS_TESTR_CONCURRENCY=1
|
||
|
||
# If you are running the tests locally you should set the env variable
|
||
# TEMPEST_CONFIG_DIR=/opt/stack/tempest/etc
|
||
[testenv:scenario]
|
||
passenv = TEMPEST_CONFIG_DIR
|
||
setenv =
|
||
OS_TEST_PATH={toxinidir}/octavia/tests/tempest/v1/scenario
|
||
OS_TESTR_CONCURRENCY=1
|