From a707405e33d81ae797103dccf2a9de9df13276cc Mon Sep 17 00:00:00 2001 From: Arnaud M Date: Tue, 25 Feb 2025 01:10:58 +0100 Subject: [PATCH] Skip testing v2/services endpoint This feature is now deprecated and may not work in an eventlet-free environment. Related-bug: #2099954 Change-Id: I8f0596bb61b267e9e087b9de0e3216635e167693 Signed-off-by: Arnaud M --- mistral_tempest_tests/tests/api/v2/test_services.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mistral_tempest_tests/tests/api/v2/test_services.py b/mistral_tempest_tests/tests/api/v2/test_services.py index 8e156bc..a0cf96c 100644 --- a/mistral_tempest_tests/tests/api/v2/test_services.py +++ b/mistral_tempest_tests/tests/api/v2/test_services.py @@ -12,7 +12,6 @@ # License for the specific language governing permissions and limitations # under the License. -import testtools from tempest import config from tempest.lib import decorators @@ -28,8 +27,7 @@ class ServicesTestsV2(base.TestCase): @decorators.attr(type='sanity') @decorators.idempotent_id('f4359ad2-9109-4305-a00a-77679878f7f9') - @testtools.skipUnless(CONF.mistral_api.service_api_supported, - 'Service api is not supported') + @decorators.skip_because(bug="2099954") def test_get_services_list(self): resp, body = self.client.get_list_obj('services')