diff --git a/tests/integration_tests/modules/test_hotplug.py b/tests/integration_tests/modules/test_hotplug.py index 8c7bc7839d09..3f0afbd77ce3 100644 --- a/tests/integration_tests/modules/test_hotplug.py +++ b/tests/integration_tests/modules/test_hotplug.py @@ -343,10 +343,11 @@ def test_multi_nic_hotplug_vpc(setup_image, session_cloud: IntegrationCloud): assert r.ok, r.stdout r = bastion.execute(f"ping -c1 {secondary_priv_ip4}") assert r.ok, r.stdout - r = bastion.execute(f"ping -c1 {primary_priv_ip6}") - assert r.ok, r.stdout - r = bastion.execute(f"ping -c1 {secondary_priv_ip6}") - assert r.ok, r.stdout + # TODO: re-enable after #5373 + # r = bastion.execute(f"ping -c1 {primary_priv_ip6}") + # assert r.ok, r.stdout + # r = bastion.execute(f"ping -c1 {secondary_priv_ip6}") + # assert r.ok, r.stdout # Remove new NIC client.instance.remove_network_interface(secondary_priv_ip4) @@ -354,7 +355,8 @@ def test_multi_nic_hotplug_vpc(setup_image, session_cloud: IntegrationCloud): # ping to primary NIC works assert bastion.execute(f"ping -c1 {primary_priv_ip4}").ok - assert bastion.execute(f"ping -c1 {primary_priv_ip6}").ok + # TODO: re-enable after #5373 + # assert bastion.execute(f"ping -c1 {primary_priv_ip6}").ok log_content = client.read_from_file("/var/log/cloud-init.log") verify_clean_log(log_content)