From 6611df0e2da0abc96979c52da0013535abf79428 Mon Sep 17 00:00:00 2001 From: ghanshyam Date: Tue, 27 Nov 2018 08:21:35 +0000 Subject: [PATCH] Set Tempest's service_available setting for congress Tempest's service_available config option includes all the service availability which is further used by tests to take decision of skip or run the test. For example, [service_available].congress is true then, congress test will run or if [service_available].congress is false then, all congress related tests either in telemetry tempest plugin or any other plugins will be skipped. This commit add the setting of congress service[1] on congress devstack plugin. Closes-Bug: #1743688 [1] http://git.openstack.org/cgit/openstack/congress-tempest-plugin/tree/congress_tempest_plugin/config.py#n24 Change-Id: I57de34d2b185b8e9838dd288d3673149391f0024 --- devstack/plugin.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 612c7e2a1..1d9d58610 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -101,6 +101,7 @@ function _configure_tempest { iniset $TEMPEST_CONFIG service_available $service "False" fi done + iniset $TEMPEST_CONFIG service_available congress "True" # Notify tempest if z3 is enabled. if [[ $ENABLE_CONGRESS_Z3 == "True" ]] ; then iniset $TEMPEST_CONFIG congressz3 enabled "True"