Revert "Mark TestVirtualPorts tests as unstable"

This reverts commit ceb27f2c7d9d91526e9062bfaad71d2a270318bf.

These tests no longer failing so let's revert, in last 2 weeks
these tests passed 140+ times and no failure.

Related-Bug: #1865453
Change-Id: I714dabafe8d68953014ed9e43cfc4eb305b454a9
Conflicts:
	neutron/tests/functional/plugins/ml2/drivers/ovn/mech_driver/test_mech_driver.py
This commit is contained in:
yatinkarel 2025-04-03 10:14:32 +05:30
parent 41626a4bb4
commit be3f8a41c1

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()