From bc073849b6aba62a39846b8be98b0da744caab84 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 22 May 2019 09:52:26 +0200 Subject: [PATCH] Mark fullstack test_ha_router_restart_agents_no_packet_lost as unstable This test is still failing quite often and we don't have root cause yet. Lets mark it as unstable for now to make our gate more stable for now. Change-Id: Id7d14b0b399ce7efc32c1524ca0f38d0a2f85410 Related-Bug: #1798475 --- neutron/tests/fullstack/test_l3_agent.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neutron/tests/fullstack/test_l3_agent.py b/neutron/tests/fullstack/test_l3_agent.py index 5f4257723cd..8f1f1c82e4c 100644 --- a/neutron/tests/fullstack/test_l3_agent.py +++ b/neutron/tests/fullstack/test_l3_agent.py @@ -24,6 +24,7 @@ from neutron.agent.l3 import ha_router from neutron.agent.l3 import namespaces from neutron.agent.linux import ip_lib from neutron.common import utils as common_utils +from neutron.tests import base as tests_base from neutron.tests.common.exclusive_resources import ip_network from neutron.tests.fullstack import base from neutron.tests.fullstack.resources import environment @@ -369,6 +370,7 @@ class TestHAL3Agent(TestL3Agent): "master", self._get_keepalived_state(keepalived_state_file)) + @tests_base.unstable_test("bug 1798475") def test_ha_router_restart_agents_no_packet_lost(self): tenant_id = uuidutils.generate_uuid() ext_net, ext_sub = self._create_external_network_and_subnet(tenant_id)