From d6fb0c46bdf238b2b21761e979198388a0446149 Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Fri, 18 Mar 2016 16:50:43 -0400 Subject: [PATCH] Skip fullstack L3 HA test It's failing because of a known issue, being handled in: https://review.openstack.org/#/c/285480/. That patch will unskip the test as part of the fix. Apart from this test, there's also a known failure in LB tests, being handled here: and https://review.openstack.org/#/c/294798/ I'm not aware of any other failure modes for fullstack. With these two patches merged, we can observe the fullstack job failure rate and hopefully make it voting. Change-Id: I6ea3292605d25848911a2d51c996d10ecd48bf9e --- 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 64bea300025..7cadd4181a4 100644 --- a/neutron/tests/fullstack/test_l3_agent.py +++ b/neutron/tests/fullstack/test_l3_agent.py @@ -15,6 +15,7 @@ import functools from oslo_utils import uuidutils +import testtools from neutron.agent.l3 import agent as l3_agent from neutron.agent.l3 import namespaces @@ -72,6 +73,7 @@ class TestHAL3Agent(base.BaseFullStackTestCase): return ( agents['agents'][0]['ha_state'] != agents['agents'][1]['ha_state']) + @testtools.skip('bug/1550886') def test_ha_router(self): # TODO(amuller): Test external connectivity before and after a # failover, see: https://review.openstack.org/#/c/196393/