Skip l2_ovs_agent functional tests

Let's skip the flaky tests until we find the root cause. The debugging
will happen with another patch that unblocks these tests so we still
have reproducer.

Change-Id: Icad4c1fb7a7ef9d6f5c34f48deb46ae286cb536b
Related-Bug: 1567668
This commit is contained in:
Jakub Libosvar 2016-04-13 12:40:15 +00:00
parent 6f17fdb3af
commit 7d5b1f8ddd
1 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,13 @@ from neutron.tests.functional.agent.l2 import base
class TestOVSAgent(base.OVSAgentTestFramework): class TestOVSAgent(base.OVSAgentTestFramework):
def setUp(self):
# NOTE(jlibosva): Tests are getting stuck when running with native
# ovsdb interface in this test suite. We skip until the root cause is
# found to unblock CI jobs.
if self.ovsdb_interface == 'native':
self.skipTest('bug/1567668')
super(TestOVSAgent, self).setUp()
def test_port_creation_and_deletion(self): def test_port_creation_and_deletion(self):
self.setup_agent_and_ports( self.setup_agent_and_ports(