cfae79cfee
Currently when the command to generate a policy file is used, it will generate a yaml based file, but call it json.sample.policy. This patch forces it to generate a json file, and changes the default name to policy.json.sample. Change-Id: I4d04f4f37385bd4601f566238aaba43dcbe74780
207 lines
6.2 KiB
INI
207 lines
6.2 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 =
|
|
stestr run '{posargs}'
|
|
stestr slowest
|
|
|
|
[testenv:api-ref]
|
|
basepython = python3
|
|
# This environment is called from CI scripts to test and publish
|
|
# the API Ref to developer.openstack.org.
|
|
deps =
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/doc/requirements.txt
|
|
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]
|
|
basepython = python3
|
|
whitelist_externals = sh
|
|
setenv =
|
|
{[testenv]setenv}
|
|
PYTHON=coverage run --source octavia --parallel-mode
|
|
commands =
|
|
coverage erase
|
|
sh -c 'OS_TEST_PATH={toxinidir}/octavia/tests/unit stestr run {posargs}'
|
|
sh -c 'OS_TEST_PATH={toxinidir}/octavia/tests/functional stestr run {posargs}'
|
|
coverage combine
|
|
# Generate a new HTML report with the combined results
|
|
# otherwise the HTML report will only show partial results
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
coverage report --fail-under=80 --skip-covered
|
|
|
|
[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]
|
|
basepython = python3
|
|
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]
|
|
basepython = python3
|
|
commands = flake8
|
|
# RST linter
|
|
doc8 --ignore-path doc/source/contributor/modules 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]
|
|
basepython = python3
|
|
deps =
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/doc/requirements.txt
|
|
whitelist_externals = rm
|
|
commands =
|
|
rm -rf doc/build api-guide/build api-ref/build doc/source/contributor/modules
|
|
sphinx-build -W -b html doc/source doc/build/html
|
|
sphinx-build -W -b html api-ref/source api-ref/build/html
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[testenv:genconfig]
|
|
basepython = python3
|
|
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]
|
|
basepython = python3
|
|
whitelist_externals = mkdir
|
|
commands =
|
|
mkdir -p etc/octavia
|
|
oslopolicy-sample-generator \
|
|
--config-file etc/policy/octavia-policy-generator.conf
|
|
|
|
[testenv:specs]
|
|
basepython = python3
|
|
whitelist_externals =
|
|
rm
|
|
find
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
python -m unittest specs-tests.test_titles
|
|
|
|
|
|
[testenv:bandit]
|
|
basepython = python3
|
|
commands = bandit -r octavia -ll -ii -x octavia/tests {posargs}
|
|
|
|
[flake8]
|
|
ignore = H104
|
|
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
|
|
# [H204]: Use assert(Not)Equal to check for equality
|
|
# [H205]: Use assert(Greater|Less)(Equal) for comparison
|
|
# [H904] Delay string interpolations at logging calls.
|
|
enable-extensions=H106,H203,H204,H205,H904
|
|
|
|
[hacking]
|
|
import_exceptions = octavia.i18n
|
|
local-check-factory = octavia.hacking.checks.factory
|
|
|
|
[doc8]
|
|
max-line-length = 79
|
|
|
|
[testenv:releasenotes]
|
|
basepython = python3
|
|
deps =
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/doc/requirements.txt
|
|
whitelist_externals = rm
|
|
commands =
|
|
rm -rf releasenotes/build
|
|
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]
|
|
basepython = python3
|
|
passenv = TEMPEST_CONFIG_DIR
|
|
setenv =
|
|
OS_TEST_PATH={toxinidir}/octavia/tests/tempest/v1/api
|
|
commands =
|
|
stestr run --concurrency 1 '{posargs}'
|
|
stestr slowest
|
|
|
|
# If you are running the tests locally you should set the env variable
|
|
# TEMPEST_CONFIG_DIR=/opt/stack/tempest/etc
|
|
[testenv:scenario]
|
|
basepython = python3
|
|
passenv = TEMPEST_CONFIG_DIR
|
|
setenv =
|
|
OS_TEST_PATH={toxinidir}/octavia/tests/tempest/v1/scenario
|
|
commands =
|
|
stestr run --concurrency 1 '{posargs}'
|
|
stestr slowest
|
|
|
|
[testenv:lower-constraints]
|
|
basepython = python3
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
whitelist_externals = sh
|
|
commands =
|
|
sh -c 'OS_TEST_PATH={toxinidir}/octavia/tests/unit stestr run {posargs}'
|
|
sh -c 'OS_TEST_PATH={toxinidir}/octavia/tests/functional stestr run {posargs}'
|
|
|
|
[testenv:requirements]
|
|
basepython = python3
|
|
deps =
|
|
-egit+https://git.openstack.org/openstack/requirements#egg=openstack-requirements
|
|
whitelist_externals = sh
|
|
commands =
|
|
sh -c '{envdir}/src/openstack-requirements/playbooks/files/project-requirements-change.py --req {envdir}/src/openstack-requirements --local {toxinidir} master'
|