From 080be87a1b9b996f7a045b9167bffd716720751b Mon Sep 17 00:00:00 2001 From: Victor Ryzhenkin Date: Fri, 2 Sep 2016 16:01:31 +0300 Subject: [PATCH] Remove check_run function usage in tests Change-Id: I2aacc346393a65fb1dce4761a06a70160ef6a147 --- murano_plugin_tests/murano_plugin/test_murano_plugin_bvt.py | 5 ----- .../murano_plugin/test_murano_plugin_update.py | 3 --- murano_plugin_tests/murano_plugin/test_post_install.py | 5 ----- 3 files changed, 13 deletions(-) diff --git a/murano_plugin_tests/murano_plugin/test_murano_plugin_bvt.py b/murano_plugin_tests/murano_plugin/test_murano_plugin_bvt.py index 9a92992..f087809 100644 --- a/murano_plugin_tests/murano_plugin/test_murano_plugin_bvt.py +++ b/murano_plugin_tests/murano_plugin/test_murano_plugin_bvt.py @@ -41,7 +41,6 @@ class TestMuranoPluginBvt(api.MuranoPluginApi): Duration 90m Snapshot deploy_murano_plugin_on_controller """ - self.check_run("deploy_murano_plugin_on_controller") self.env.revert_snapshot("ready_with_3_slaves") @@ -77,7 +76,6 @@ class TestMuranoPluginBvt(api.MuranoPluginApi): Duration 90m Snapshot deploy_murano_plugin_on_controller_ha """ - self.check_run("deploy_murano_plugin_on_controller_ha") self.env.revert_snapshot("ready_with_3_slaves") @@ -114,7 +112,6 @@ class TestMuranoPluginBvt(api.MuranoPluginApi): Duration 90m Snapshot deploy_murano_plugin """ - self.check_run("deploy_murano_plugin") self.env.revert_snapshot("ready_with_3_slaves") @@ -150,7 +147,6 @@ class TestMuranoPluginBvt(api.MuranoPluginApi): Duration 120m Snapshot deploy_murano_plugin_ha """ - self.check_run("deploy_murano_plugin_ha") self.env.revert_snapshot("ready_with_5_slaves") @@ -186,7 +182,6 @@ class TestMuranoPluginBvt(api.MuranoPluginApi): Duration 150m Snapshot deploy_murano_plugin_full_ha """ - self.check_run("deploy_murano_plugin_full_ha") self.env.revert_snapshot("ready_with_9_slaves") diff --git a/murano_plugin_tests/murano_plugin/test_murano_plugin_update.py b/murano_plugin_tests/murano_plugin/test_murano_plugin_update.py index e4c5c56..a83e912 100644 --- a/murano_plugin_tests/murano_plugin/test_murano_plugin_update.py +++ b/murano_plugin_tests/murano_plugin/test_murano_plugin_update.py @@ -43,8 +43,6 @@ class TestMuranoPluginUpdate(api.MuranoPluginApi): Snapshot deploy_murano_plugin_in_environment_with_murano """ - self.check_run("deploy_murano_plugin_in_environment_with_murano") - self.env.revert_snapshot("ready_with_3_slaves") self.helpers.create_cluster(name=self.__class__.__name__, @@ -86,7 +84,6 @@ class TestMuranoPluginUpdate(api.MuranoPluginApi): Duration 120m Snapshot deploy_murano_node_in_environment_with_murano """ - self.check_run("deploy_murano_node_in_environment_with_murano") self.env.revert_snapshot("ready_with_3_slaves") diff --git a/murano_plugin_tests/murano_plugin/test_post_install.py b/murano_plugin_tests/murano_plugin/test_post_install.py index 1b0bf9d..897e4cb 100644 --- a/murano_plugin_tests/murano_plugin/test_post_install.py +++ b/murano_plugin_tests/murano_plugin/test_post_install.py @@ -41,7 +41,6 @@ class TestMuranoPostInstallation(api.MuranoPluginApi): Duration 60m Snapshot deploy_environment_without_murano_plugin """ - self.check_run("deploy_environment_without_murano_plugin") self.env.revert_snapshot("ready_with_3_slaves") @@ -74,8 +73,6 @@ class TestMuranoPostInstallation(api.MuranoPluginApi): Duration 60m Snapshot deploy_murano_plugin_with_murano_node_in_existing_environment """ - self.check_run( - "deploy_murano_plugin_with_murano_node_in_existing_environment") self.env.revert_snapshot("deploy_environment_without_murano_plugin") @@ -107,8 +104,6 @@ class TestMuranoPostInstallation(api.MuranoPluginApi): Duration 60m Snapshot deploy_murano_plugin_on_controller_in_existing_environment """ - self.check_run( - "deploy_murano_plugin_on_controller_in_existing_environment") self.env.revert_snapshot("deploy_environment_without_murano_plugin")