Fix functional tests

In b5a3075c8a9ea53958020b4edb5a8c70362d4965 we decided to use
OS_TEST_PATH instead of TEST_PATH to align with other OpenStack
projects. Unfortunately, we forgot to update this variable in tox.ini,
which means that since then, "tox -efunctional" has been running unit
tests instead of functional ones.

Change-Id: I036badfdf2b466ffa1ff14d96d03c047ff0509f8
This commit is contained in:
Cyril Roelandt 2025-03-27 16:43:53 +01:00
parent a3a93e452b
commit 609aa17462

View File

@ -33,7 +33,7 @@ passenv =
[testenv:functional]
setenv =
TEST_PATH = ./glance/tests/functional
OS_TEST_PATH = ./glance/tests/functional
# TODO(stephenfin): Remove once we bump our upper-constraint to SQLAlchemy 2.0
SQLALCHEMY_WARN_20=1
commands = stestr run {posargs}