diff --git a/whitebox_neutron_tempest_plugin/tests/scenario/test_internal_dns.py b/whitebox_neutron_tempest_plugin/tests/scenario/test_internal_dns.py index fbb6bf0..86152de 100644 --- a/whitebox_neutron_tempest_plugin/tests/scenario/test_internal_dns.py +++ b/whitebox_neutron_tempest_plugin/tests/scenario/test_internal_dns.py @@ -13,6 +13,7 @@ # License for the specific language governing permissions and limitations # under the License. import re +import testtools from neutron_lib import constants as lib_constants from neutron_tempest_plugin.common import ssh @@ -317,6 +318,8 @@ class InternalDNSInterruptionsAdvancedTestOvn( @decorators.attr(type='slow') @utils.requires_ext(extension="dns-integration", service="network") + @testtools.skipIf(WB_CONF.openstack_type == 'podified', + 'Not yet adapted for podified environment') @decorators.idempotent_id('e6c5dbea-d704-4cda-bb92-a5bfd0aa1bb2') def test_ovn_dns_name_after_networker_reboot(self): """Tests that OpenStack port, guest VM and OVN NB database have correct diff --git a/whitebox_neutron_tempest_plugin/tests/scenario/test_l3ha_ovn.py b/whitebox_neutron_tempest_plugin/tests/scenario/test_l3ha_ovn.py index 4c9b7b1..0cfe243 100644 --- a/whitebox_neutron_tempest_plugin/tests/scenario/test_l3ha_ovn.py +++ b/whitebox_neutron_tempest_plugin/tests/scenario/test_l3ha_ovn.py @@ -34,6 +34,8 @@ WB_CONF = config.CONF.whitebox_neutron_plugin_options LOG = log.getLogger(__name__) +@testtools.skipIf(WB_CONF.openstack_type == 'podified', + 'Not yet adapted for podified environment') class L3haOvnTest(base.TrafficFlowTest, base.BaseTempestTestCaseOvn): credentials = ['primary', 'admin']