OpenStack Release Bot
a09f3bde31
Update the URL to the upper-constraints file to point to the redirect rule on releases.openstack.org so that anyone working on this branch will switch to the correct upper-constraints list automatically when the requirements repository branches. Until the requirements repository has as stable/2024.1 branch, tests will continue to use the upper-constraints list on master. Change-Id: I95bde9d3298b003b5ea2822c357ee07f7865921a
124 lines
3.6 KiB
INI
124 lines
3.6 KiB
INI
[tox]
|
|
envlist = py3,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
|
|
minversion = 3.18.0
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
OS_TEST_PATH=./trove/tests/unittests
|
|
OS_STDOUT_CAPTURE=1
|
|
OS_STDERR_CAPTURE=1
|
|
|
|
usedevelop = True
|
|
install_command = pip install \
|
|
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/2024.1} \
|
|
-U {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = find ./trove -type f -name "*.pyc" -delete
|
|
rm -f trove_test.sqlite
|
|
stestr run --serial {posargs}
|
|
stestr slowest
|
|
allowlist_externals = find
|
|
rm
|
|
bash
|
|
|
|
[testenv:pep8]
|
|
deps =
|
|
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/2024.1}
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
flake8
|
|
reno lint
|
|
doc8 {posargs}
|
|
doc8 -e '.yaml' releasenotes/notes/
|
|
doc8 doc/source
|
|
|
|
[testenv:debug]
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[testenv:cover]
|
|
allowlist_externals = sh
|
|
setenv =
|
|
{[testenv]setenv}
|
|
PYTHON=coverage run --source trove
|
|
commands =
|
|
coverage erase
|
|
sh -c 'OS_TEST_PATH={toxinidir}/backup/tests/unittests stestr run --serial {posargs}'
|
|
sh -c 'OS_TEST_PATH={toxinidir}/trove/tests/unittests stestr run --serial {posargs}'
|
|
#coverage run -a run_tests.py
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
coverage report --fail-under=46
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[doc8]
|
|
ignore-path = .venv,.tox,.git,dist,doc,*egg-info,tools,etc,build,*.po,*.pot,integration,releasenotes,*.txt,api-ref/source/samples
|
|
|
|
[flake8]
|
|
show-source = True
|
|
ignore = E402,E731,F601,H301,H404,H405,H501,W503,W504,W605
|
|
enable-extensions = H203,H106
|
|
import-order-style = pep8
|
|
builtins = _
|
|
# add *.yaml for playbooks/trove-devstack-base.yaml, as it will be matched by
|
|
# trove-* in the "filename" configuration.
|
|
exclude=.venv,.tox,.git,dist,doc,*egg,tools,etc,build,*.po,*.pot,integration,releasenotes,*.yaml
|
|
filename=*.py,trove-*
|
|
|
|
[hacking]
|
|
import_exceptions = trove.common.i18n
|
|
|
|
[flake8:local-plugins]
|
|
extension =
|
|
# T103= checks:check_raised_localized_exceptions
|
|
T105 = checks:no_translate_logs
|
|
N335 = checks:assert_raises_regexp
|
|
paths = ./trove/hacking
|
|
|
|
[testenv:api-ref]
|
|
# This environment is called from CI scripts to test and publish
|
|
# the API Ref to developer.openstack.org.
|
|
commands =
|
|
rm -rf api-ref/build
|
|
sphinx-build -W -b html -d api-ref/build/doctrees api-ref/source api-ref/build/html
|
|
|
|
[testenv:releasenotes]
|
|
deps =
|
|
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/2024.1}
|
|
-r{toxinidir}/doc/requirements.txt
|
|
allowlist_externals = rm
|
|
commands =
|
|
rm -rf releasenotes/build
|
|
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:bandit]
|
|
commands = bandit -r trove -n5 -x tests
|
|
|
|
[testenv:bandit-baseline]
|
|
envdir = {toxworkdir}/bandit
|
|
commands = bandit-baseline -r trove -n5 -x tests -ii -ll
|
|
|
|
[testenv:genconfig]
|
|
commands = oslo-config-generator --config-file=tools/trove-config-generator.conf
|
|
|
|
[testenv:genpolicy]
|
|
commands = oslopolicy-sample-generator --config-file=tools/trove-policy-generator.conf
|
|
|
|
[testenv:pylint]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python tools/trove-pylint.py {posargs:check}
|
|
|
|
[testenv:docs]
|
|
commands = sphinx-build -W -b html doc/source doc/build/html
|
|
|
|
[testenv:trovestack]
|
|
changedir = {toxinidir}/integration/scripts
|
|
passenv = *
|
|
commands =
|
|
./trovestack {posargs}
|