]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Skip a test for nicira service plugin
authorSalvatore Orlando <salv.orlando@gmail.com>
Sat, 15 Feb 2014 19:46:37 +0000 (11:46 -0800)
committerSalvatore Orlando <salv.orlando@gmail.com>
Sat, 15 Feb 2014 19:46:37 +0000 (11:46 -0800)
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

index ca2d2a33af71d7494e5408a53f85cf0ed42160a0..e65cc48296d06dc3705e5ffd21eb125a02926a5b 100644 (file)
@@ -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")