From 90da1a649de70130bca80eea902b93bc61ca4019 Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Sat, 15 Feb 2014 11:46:37 -0800 Subject: [PATCH] Skip a test for nicira service plugin test_router_add_interface_subnet_with_port_from_other_tenant is causing intermittent failures in unit tests because of issues related with sql session autoflush. This patch skips this test, since it is already covered by another test case in the same module. This should prevent job failures while the relevant bug is addressed. Change-Id: Iad33dada61d17fad14e569e241f4079465b5f792 Related-Bug: 1280035 --- neutron/tests/unit/nicira/test_edge_router.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutron/tests/unit/nicira/test_edge_router.py b/neutron/tests/unit/nicira/test_edge_router.py index ca2d2a33af..e65cc48296 100644 --- a/neutron/tests/unit/nicira/test_edge_router.py +++ b/neutron/tests/unit/nicira/test_edge_router.py @@ -305,3 +305,6 @@ class TestProxyCreateLswitch(base.BaseTestCase): tags=more_tags) expected = self.tags + more_tags self.assertEqual(expected, result[2]) + + def test_router_add_interface_subnet_with_port_from_other_tenant(self): + self.skip("Skipping this unit test until bug 1280035 is fixed")