From c04fc6ce0ed0a6390987df132498e0492c7d986d Mon Sep 17 00:00:00 2001 From: "Yuanbin.Chen" Date: Mon, 3 Sep 2018 09:57:14 +0800 Subject: [PATCH] Enable cluster profile only and replace function test OpenStackSdk project was support api microversion. and senlinclient was change sdk connection. https://review.openstack.org/#/c/587411/ Change-Id: I15ad5caf7ca257b5f14a3a3204be11993cba1973 Signed-off-by: Yuanbin.Chen --- senlinclient/tests/functional/test_clusters.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/senlinclient/tests/functional/test_clusters.py b/senlinclient/tests/functional/test_clusters.py index 97502e26..b44dc142 100644 --- a/senlinclient/tests/functional/test_clusters.py +++ b/senlinclient/tests/functional/test_clusters.py @@ -9,7 +9,6 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -from tempest.lib import decorators from senlinclient.tests.functional import base @@ -82,10 +81,6 @@ class ClusterTest(base.OpenStackClientTestBase): self.assertEqual(cluster_data['timeout'], '300') self.assertEqual(new_pf['name'], node_data['profile_name']) - # (chenyb4) cluster update profile only need api microversion support, - # skip cluster update profile only before openstacksdk support - # api microversion. - @decorators.skip_because(bug="2003146") def test_cluster_update_profile_only(self): old_name = self.name_generate() old_pf = self.profile_create(old_name) @@ -257,9 +252,6 @@ class ClusterTest(base.OpenStackClientTestBase): self.assertEqual('', mem_del_data['node_ids']) self.assertNotIn(node['id'], mem_del_data['node_ids']) - # (chenyb4) cluster members replace need api microversion support, - # skip cluster members replace before openstacksdk support api microversion - @decorators.skip_because(bug="2003146") def test_cluster_members_replace(self): name = self.name_generate() pf = self.profile_create(name)