From e7f89bf63c3e122bced82bb6f5294787268f4a1e Mon Sep 17 00:00:00 2001 From: asarfaty Date: Wed, 5 Aug 2020 10:07:24 +0200 Subject: [PATCH] Skip new unsupported unittests Commit I054296c790b697198550acbeae29546758b422c2 added IPv6 related test which is not supported by the v/v3 plugins Change-Id: Ia30bd8aca47397c2ea2fb3c55f6a559ef2f22a91 --- vmware_nsx/tests/unit/nsx_v/test_plugin.py | 6 ++++++ vmware_nsx/tests/unit/nsx_v3/test_plugin.py | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/vmware_nsx/tests/unit/nsx_v/test_plugin.py b/vmware_nsx/tests/unit/nsx_v/test_plugin.py index 405c41f996..8ac5f65cef 100644 --- a/vmware_nsx/tests/unit/nsx_v/test_plugin.py +++ b/vmware_nsx/tests/unit/nsx_v/test_plugin.py @@ -3582,6 +3582,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') @@ -4245,6 +4248,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') diff --git a/vmware_nsx/tests/unit/nsx_v3/test_plugin.py b/vmware_nsx/tests/unit/nsx_v3/test_plugin.py index 65a6155e56..22c369d4ef 100644 --- a/vmware_nsx/tests/unit/nsx_v3/test_plugin.py +++ b/vmware_nsx/tests/unit/nsx_v3/test_plugin.py @@ -2199,10 +2199,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,