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
This commit is contained in:
Salvatore Orlando 2014-02-15 11:46:37 -08:00
parent b70dce2aab
commit 95807c9436
1 changed files with 3 additions and 0 deletions

View 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")