From c2ab2626f8d4a1847ddc7d52b9449bc54c052ed7 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Fri, 8 Mar 2019 13:34:15 +0100 Subject: [PATCH] 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 --- neutron/tests/functional/agent/l3/test_dvr_router.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/neutron/tests/functional/agent/l3/test_dvr_router.py b/neutron/tests/functional/agent/l3/test_dvr_router.py index fd45f768c13..681fcb2dd30 100644 --- a/neutron/tests/functional/agent/l3/test_dvr_router.py +++ b/neutron/tests/functional/agent/l3/test_dvr_router.py @@ -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)