Skip new unsupported unittests

Commit If276a7613c156f8c826967c9c8cbd6f2a8d32674 added unsupported tests
which are now skipped by the different plugins

Change-Id: If0e98cd533c83999a67e7905d8d0ec7d903c0d70
This commit is contained in:
Adit Sarfaty 2018-11-14 12:31:34 +02:00
parent b93ef6dbb8
commit 35549f46a6
3 changed files with 12 additions and 0 deletions

View File

@ -889,6 +889,9 @@ class TestL3NatTestCase(L3NatTest,
def test_floatingip_update_subnet_gateway_disabled(self):
self.skipTest('not supported')
def test__notify_gateway_port_ip_changed(self):
self.skipTest('not supported')
class ExtGwModeTestCase(NsxPluginV2TestCase,
test_ext_gw_mode.ExtGwModeIntTestCase):

View File

@ -2748,6 +2748,9 @@ class L3NatTestCaseBase(test_l3_plugin.L3NatTestCaseMixin):
def test_router_add_interface_subnet_with_bad_tenant_returns_404(self):
self.skipTest('TBD')
def test__notify_gateway_port_ip_changed(self):
self.skipTest('not supported')
def test_router_add_interface_multiple_ipv6_subnets_same_net(self):
"""Test router-interface-add for multiple ipv6 subnets on a network.

View File

@ -2229,6 +2229,12 @@ class TestL3NatTestCase(L3NatTest,
super(TestL3NatTestCase,
self).test_router_add_and_remove_gateway()
def test__notify_gateway_port_ip_changed(self):
self.skipTest('not supported')
def test__notify_gateway_port_ip_not_changed(self):
self.skipTest('not supported')
def test_floatingip_via_router_interface_returns_201(self):
self.skipTest('not supported')