From 3fe3a90f13656bfd8f04aa04871bcd02f967f336 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 13 Apr 2022 09:46:24 +0200 Subject: [PATCH] Exclude test test_floatingip_port_details from the Linuxbridge job During the last PTG [1] we decided that due to lack of maintainers for the Linuxbridge backend we will probably mark it as "unsupported" (or something like that, nameing isn't decided yet) thus we will not guarantee that all tests with such backend will always run properly and all will be in good shape. As a first "victim" of that decision, lets skip test neutron_tempest_plugin.scenario.test_floatingip.FloatingIPPortDetailsTest.\ test_floatingip_port_details which is failing from time to time in the linuxbridge scenario job. Related-bug: #1799790 [1] https://etherpad.opendev.org/p/neutron-zed-ptg#L171 Change-Id: I0b481bc6b66fbe7f5e4dab92e9f60812bbaeaead --- zuul.d/master_jobs.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zuul.d/master_jobs.yaml b/zuul.d/master_jobs.yaml index d19aae35..8b7623a5 100644 --- a/zuul.d/master_jobs.yaml +++ b/zuul.d/master_jobs.yaml @@ -381,9 +381,13 @@ # test_established_tcp_session_after_re_attachinging_sg from the # exclude regex when bug https://bugs.launchpad.net/neutron/+bug/1936911 # will be fixed + # TODO(slaweq) remove test_floatingip_port_details from the exclude + # regex when bug https://bugs.launchpad.net/neutron/+bug/1799790 will be + # fixed tempest_exclude_regex: "\ (^neutron_tempest_plugin.scenario.test_vlan_transparency.VlanTransparencyTest)|\ - (^neutron_tempest_plugin.scenario.test_security_groups.NetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)" + (^neutron_tempest_plugin.scenario.test_security_groups.NetworkSecGroupTest.test_established_tcp_session_after_re_attachinging_sg)|\ + (^neutron_tempest_plugin.scenario.test_floatingip.FloatingIPPortDetailsTest.test_floatingip_port_details)" devstack_localrc: Q_AGENT: linuxbridge NETWORK_API_EXTENSIONS: "{{ (network_api_extensions + network_api_extensions_linuxbridge) | join(',') }}"