Fix issues related to tox4

Related to https://lists.openstack.org/pipermail/openstack-discuss/2023-February/032247.html

Change-Id: Ie97378271aeb3f98195fbe8433723ea556e9cf9e
This commit is contained in:
Hervé Beraud 2023-02-17 10:32:33 +01:00 committed by Hervé Beraud
parent 03cce883da
commit b4be3a4603
1 changed files with 9 additions and 5 deletions

14
tox.ini
View File

@ -1,8 +1,6 @@
[tox] [tox]
minversion = 3.2.0 minversion = 3.2.0
envlist = py3,pep8 envlist = py3,pep8
basepython = python3
ignore_basepython_conflict = true
[testenv] [testenv]
deps = deps =
@ -21,10 +19,16 @@ commands =
commands = {posargs} commands = {posargs}
[testenv:cover] [testenv:cover]
commands = python setup.py test --coverage --coverage-package-name=oslo_serialization --testr-args='{posargs}' setenv =
PYTHON=coverage run --source oslo_concurrency --parallel-mode
commands =
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
[testenv:docs] [testenv:docs]
whitelist_externals = rm allowlist_externals = rm
deps = deps =
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/doc/requirements.txt -r{toxinidir}/doc/requirements.txt
@ -33,7 +37,7 @@ commands =
sphinx-build -W --keep-going -b html doc/source doc/build/html sphinx-build -W --keep-going -b html doc/source doc/build/html
[testenv:releasenotes] [testenv:releasenotes]
whitelist_externals = rm allowlist_externals = rm
deps = {[testenv:docs]deps} deps = {[testenv:docs]deps}
commands = commands =
rm -rf releasenotes/build rm -rf releasenotes/build