Skip new unsupported unittests

Commit I054296c790b697198550acbeae29546758b422c2 added IPv6 related
test which is not supported by the v/v3 plugins

Change-Id: Ia30bd8aca47397c2ea2fb3c55f6a559ef2f22a91
This commit is contained in:
asarfaty 2020-08-05 10:07:24 +02:00 committed by Adit Sarfaty
parent dcc5e5abb3
commit 8e0254b711
2 changed files with 9 additions and 1 deletions

View File

@ -3573,6 +3573,9 @@ class TestExclusiveRouterTestCase(L3NatTest, L3NatTestCaseBase,
def test_router_add_interface_ipv6_subnet(self):
self.skipTest('Not supported')
def test_update_router_interface_port_ipv6_subnet_ext_ra(self):
self.skipTest('Not supported')
def test_router_add_gateway_multiple_subnets_ipv6(self):
self.skipTest('not supported')
@ -4236,6 +4239,9 @@ class TestVdrTestCase(L3NatTest, L3NatTestCaseBase,
def test_router_add_interface_ipv6_subnet(self):
self.skipTest('Not supported')
def test_update_router_interface_port_ipv6_subnet_ext_ra(self):
self.skipTest('Not supported')
def test_router_add_interface_dup_subnet2_returns_400(self):
self.skipTest('skipped')

View File

@ -2250,10 +2250,12 @@ class TestL3NatTestCase(L3NatTest,
def test_router_delete_dhcpv6_stateless_subnet_inuse_returns_409(self):
self.skipTest('DHCPv6 not supported')
@common_v3.with_disable_dhcp
def test_router_add_interface_ipv6_subnet(self):
self.skipTest('DHCPv6 not supported')
def test_update_router_interface_port_ipv6_subnet_ext_ra(self):
self.skipTest('DHCPv6 not supported')
@common_v3.with_disable_dhcp
def test_router_add_interface_ipv6_subnet_without_gateway_ip(self):
super(TestL3NatTestCase,