Merge "Skip not adapted tests on podified"

This commit is contained in:
Zuul 2024-06-27 12:11:56 +00:00 committed by Gerrit Code Review
commit e12f9a7c8f
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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']