Fix unit tests

Tests were broken by If2473f2db3ca16b5f46d3280e79a49756d1c098a
Fix by skipping freshly added ipv6 test

Change-Id: Ibaf5c5ea029ed740414019542660fc4e499e5c11
This commit is contained in:
Anna Khmelnitsky 2017-04-03 17:18:14 -07:00
parent 3c983e7883
commit 233b7bb2b1
2 changed files with 6 additions and 0 deletions

View File

@ -881,6 +881,9 @@ class TestPortsV2(NsxVPluginV2TestCase,
ipv6_pd=False):
self.skipTest('No DHCP v6 Support yet')
def test_update_port_with_new_ipv6_slaac_subnet_in_fixed_ips(self):
self.skipTest('No DHCP v6 Support yet')
def test_create_port_anticipating_allocation(self):
with self.network(shared=True) as network:
with self.subnet(network=network, cidr='10.0.0.0/24',

View File

@ -162,6 +162,9 @@ class TestNsxv3IpamPorts(test_plugin.TestPortsV2, MockIPPools):
def test_create_port_with_ipv6_slaac_subnet_in_fixed_ips(self):
self.skipTest('Allocating a specific IP is not supported')
def test_update_port_with_new_ipv6_slaac_subnet_in_fixed_ips(self):
self.skipTest('Allocating a specific IP is not supported')
def test_create_port_with_ipv6_pd_subnet_in_fixed_ips(self):
self.skipTest('Allocating a specific IP is not supported')