Mark dvr_ha_router_failover tests as unstable

According to related bug, those tests are now failing
quite often due to reasons described in bug report.
Lets mark them as unstable for now to make our gate
more stable until we will fix those tests in proper way.

Change-Id: Id803f2d23375a73322dbcc7337480d28c33cea82
Related-Bug: #1819160
This commit is contained in:
Slawek Kaplonski 2019-03-08 13:34:15 +01:00
parent fe73e8c9b3
commit c2ab2626f8
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,7 @@ from neutron.agent.linux import ip_lib
from neutron.agent.linux import iptables_manager
from neutron.common import constants as n_const
from neutron.common import utils
from neutron.tests import base as test_base
from neutron.tests.common import l3_test_common
from neutron.tests.common import machine_fixtures
from neutron.tests.common import net_helpers
@ -1517,13 +1518,16 @@ class TestDvrRouter(framework.L3AgentTestFramework):
self._assert_ip_addresses_in_dvr_ha_snat_namespace(router2)
self._assert_no_ip_addresses_in_dvr_ha_snat_namespace(router1)
@test_base.unstable_test("bug 1819160")
def test_dvr_ha_router_failover_with_gw(self):
self._test_dvr_ha_router_failover(enable_gw=True)
@test_base.unstable_test("bug 1819160")
def test_dvr_ha_router_failover_with_gw_and_floatingip(self):
self._test_dvr_ha_router_failover_with_gw_and_fip(
enable_gw=True, enable_centralized_fip=True, snat_bound_fip=True)
@test_base.unstable_test("bug 1819160")
def test_dvr_ha_router_failover_without_gw(self):
self._test_dvr_ha_router_failover(enable_gw=False)