Replace MISTRAL_URL in functional tests

Also get rid of some useless parameters in zuul config

Change-Id: I77cf51015f5d53b3a02697ee2e4ca5975f513f04
Signed-off-by: Arnaud M <arnaud.morin@gmail.com>
This commit is contained in:
Arnaud M
2025-09-04 22:48:11 +02:00
committed by Arnaud Morin
parent 5dd77f8e00
commit 097f037c52
3 changed files with 7 additions and 5 deletions

View File

@@ -14,10 +14,8 @@
h-eng: true
tox_envlist: functional
tox_environment:
# NOTE(amorin) is it still needed?
IDENTITY_API_VERSION: 3
PYTHONUNBUFFERED: 'true'
MISTRAL_USE_MOD_WSGI: true
MISTRAL_RPC_IMPLEMENTATION: oslo
MYSQL_ROOT_PW: secretdatabase
required-projects:
- openstack/heat

View File

@@ -21,7 +21,9 @@ from tempest.lib import exceptions
from mistralclient.tests.functional.cli import base
MISTRAL_URL = "http://localhost:8989/v2"
# NOTE(amorin) this is the hardcoded mistral URL in devstack
# Since we moved to uwsgi, this is behind apache ProxyPass /workflow
MISTRAL_URL = "http://localhost/workflow/v2"
class MistralClientTestBase(base.MistralCLIAuth, base.MistralCLIAltAuth):

View File

@@ -21,7 +21,9 @@ from mistralclient.tests.functional.cli import base
from mistralclient.tests.functional.cli.v2 import base_v2
MISTRAL_URL = "http://localhost:8989/v2"
# NOTE(amorin) this is the hardcoded mistral URL in devstack
# Since we moved to uwsgi, this is behind apache ProxyPass /workflow
MISTRAL_URL = "http://localhost/workflow/v2"
class SimpleMistralCLITests(base.MistralCLIAuth):