Temporary skip metadata agent faults tests

Those tests are failing in ML2/OVN backend due to the bug [1]. To
unblock Tobiko gate lets skip those few broken tests for now.

[1] https://bugs.launchpad.net/neutron/+bug/2118398

Related-bug: #2118398
Change-Id: I68cf4aebb62ae46f748c104d41a4ab569c650b52
This commit is contained in:
Slawek Kaplonski
2025-07-28 16:38:18 +02:00
parent 39c7ef2f2b
commit 293fa22512

View File

@@ -878,6 +878,7 @@ class MetadataAgentTest(BaseAgentTest):
"Metadata server reached from Nova server:\n"
f"{curl_output}")
@tobiko.skip("Bug https://bugs.launchpad.net/neutron/+bug/2118398")
def test_metadata_service_restart(self):
# Ensure service is up
self.start_agent()
@@ -891,6 +892,7 @@ class MetadataAgentTest(BaseAgentTest):
self.start_agent()
self.wait_for_metadata_status(is_reachable=True)
@tobiko.skip("Bug https://bugs.launchpad.net/neutron/+bug/2118398")
def test_vm_reachability_when_metadata_agent_is_down(self):
self.stop_agent()
self.wait_for_metadata_status(is_reachable=False)
@@ -898,6 +900,7 @@ class MetadataAgentTest(BaseAgentTest):
self.start_agent()
self.wait_for_metadata_status(is_reachable=True)
@tobiko.skip("Bug https://bugs.launchpad.net/neutron/+bug/2118398")
def test_restart_metadata_containers(self):
self.restart_agent_container()
self.wait_for_metadata_status(is_reachable=True)