Remove extra spaces in tox.ini

'setenv' and 'commands' should be at the same level of indentation
otherwise it breaks some build tooling as we are hitting in
RDO.

Change-Id: Ib6ac2e4b62aa26dc9d5c5ff97844f0e7b61386e5
This commit is contained in:
Joel Capitao 2023-06-28 09:10:35 +02:00
parent 61c460f3f2
commit a0ba2d777c

10
tox.ini
View File

@ -21,11 +21,11 @@ commands = {posargs}
[testenv:cover]
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
commands =
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml
[testenv:docs]
allowlist_externals = rm