From ba1e1eb4dd7b56a72b97204a9a1e1b2f49b34268 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Thu, 14 Jun 2018 14:31:28 +0200 Subject: [PATCH] Mark test_ha_router_restart_agents_no_packet_lost as unstable Fullstack test test_l3_agent.TestHAL3Agent.test_ha_router_restart_agents_no_packet_lost is marked as unstable now becuase it is failing quite often recently. We need to figure out what is the reason of this issue but to not block gates with many failures, let's mark it as unstable for now. Change-Id: I21e590a24390345dfe451b035fd973928445e987 Related-Bug: #1776459 --- 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 1cc299ad0a7..cbae2fd1b51 100644 --- a/neutron/tests/fullstack/test_l3_agent.py +++ b/neutron/tests/fullstack/test_l3_agent.py @@ -23,6 +23,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.common import machine_fixtures from neutron.tests.fullstack import base @@ -322,6 +323,7 @@ class TestHAL3Agent(TestL3Agent): "master", self._get_keepalived_state(keepalived_state_file)) + @tests_base.unstable_test("bug 1776459") 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)