Merge "Revert "Mark TestVirtualPorts tests as unstable""

This commit is contained in:
Zuul 2025-04-07 09:40:14 +00:00 committed by Gerrit Code Review
commit f19572c539

View File

@ -41,7 +41,6 @@ from neutron.db import ovn_hash_ring_db
from neutron.db import ovn_revision_numbers_db as db_rev
from neutron.plugins.ml2 import db as ml2_db
from neutron.plugins.ml2.drivers.ovn.mech_driver.ovsdb import ovsdb_monitor
from neutron.tests import base as tests_base
from neutron.tests.functional import base
from neutron.tests.unit.extensions import test_securitygroup as test_sg
@ -472,7 +471,6 @@ class TestVirtualPorts(base.TestOVNFunctionalBase):
check = functools.partial(self._is_ovn_port_type, port_id, type)
n_utils.wait_until_true(check, timeout=10)
@tests_base.unstable_test("bug 1865453")
def test_virtual_port_created_before(self):
virt_port = self._create_port()
virt_ip = virt_port['fixed_ips'][0]['ip_address']
@ -508,7 +506,6 @@ class TestVirtualPorts(base.TestOVNFunctionalBase):
backup['id'],
ovn_vport.options[ovn_const.LSP_OPTIONS_VIRTUAL_PARENTS_KEY])
@tests_base.unstable_test("bug 1865453")
def test_virtual_port_update_address_pairs(self):
primary = self._create_port()
backup = self._create_port()
@ -578,7 +575,6 @@ class TestVirtualPorts(base.TestOVNFunctionalBase):
self.assertNotIn(ovn_const.LSP_OPTIONS_VIRTUAL_IP_KEY,
ovn_vport.options)
@tests_base.unstable_test("bug 1865453")
def test_virtual_port_created_after(self):
primary = self._create_port(fixed_ip='10.0.0.11')
backup = self._create_port(fixed_ip='10.0.0.12')
@ -605,7 +601,6 @@ class TestVirtualPorts(base.TestOVNFunctionalBase):
backup['id'],
ovn_vport.options[ovn_const.LSP_OPTIONS_VIRTUAL_PARENTS_KEY])
@tests_base.unstable_test("bug 1865453")
def test_virtual_port_delete_parents(self):
primary = self._create_port()
backup = self._create_port()