From a33bd6ee1feb7e23a9333ebba3a88e886bed1b78 Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Thu, 12 Mar 2020 11:59:27 +0200 Subject: [PATCH] Disable negative subnetpool test Temporary disable negative test that forbids assigning shared address scope to subnet pool for tenant users. Change-Id: I13dd36b3364b7a0f3241efa6ba5f8c3b2246f167 Partial-Bug: #1862968 --- neutron_tempest_plugin/api/test_subnetpools_negative.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/neutron_tempest_plugin/api/test_subnetpools_negative.py b/neutron_tempest_plugin/api/test_subnetpools_negative.py index 214a012b..5513c868 100644 --- a/neutron_tempest_plugin/api/test_subnetpools_negative.py +++ b/neutron_tempest_plugin/api/test_subnetpools_negative.py @@ -173,6 +173,12 @@ class SubnetPoolsNegativeTestJSON(test_subnetpools.SubnetPoolsTestBase): @decorators.idempotent_id('3396ec6c-cb80-4ebe-b897-84e904580bdf') @utils.requires_ext(extension='address-scope', service='network') def test_tenant_create_subnetpool_associate_shared_address_scope(self): + # TODO(imalinovskiy): This test is temporary disabled + # to be able to test & merge + # https://review.opendev.org/709122/ and will be enabled again in + # https://review.opendev.org/711610/ + self.skipTest("Temporary disabled") + address_scope = self.create_address_scope( name=data_utils.rand_name('smoke-address-scope'), is_admin=True, shared=True, ip_version=4)