From 2e82da28aef980c32fccbf730a9d45ad46bd757d Mon Sep 17 00:00:00 2001 From: Vitalii Yerys Date: Wed, 10 Aug 2016 16:30:35 +0300 Subject: [PATCH] Changed naming for test groups to follow unified naming convention. Change-Id: Ib9cbb1e032c8c8e44acc7d05dc2f906a3c389ad1 --- doc/testing/test_suite_smoke_bvt.rst | 4 ++-- plugin_test/tests/test_gcs_smoke_bvt.py | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/testing/test_suite_smoke_bvt.rst b/doc/testing/test_suite_smoke_bvt.rst index 7a088cc..d68b83c 100644 --- a/doc/testing/test_suite_smoke_bvt.rst +++ b/doc/testing/test_suite_smoke_bvt.rst @@ -10,7 +10,7 @@ Smoke test ID ## -gcs_deploy_smoke +gcs_smoke Description ########### @@ -49,7 +49,7 @@ ID ## -gcs_deploy_bvt +gcs_bvt Description ########### diff --git a/plugin_test/tests/test_gcs_smoke_bvt.py b/plugin_test/tests/test_gcs_smoke_bvt.py index a2b7181..6449033 100644 --- a/plugin_test/tests/test_gcs_smoke_bvt.py +++ b/plugin_test/tests/test_gcs_smoke_bvt.py @@ -30,9 +30,9 @@ class GcsTestClass(GcsTestBase): """GcsTestBase.""" # TODO(unknown) documentation @test(depends_on=[SetupEnvironment.prepare_slaves_3], - groups=["gcs_deploy_smoke"]) + groups=["gcs_smoke"]) @log_snapshot_after_test - def gcs_deploy_smoke(self): + def gcs_smoke(self): """Deploy non HA cluster with GCS plugin installed and enabled. Scenario: @@ -80,12 +80,12 @@ class GcsTestClass(GcsTestBase): check_services=False ) - self.env.make_snapshot("gcs_deploy_smoke") + self.env.make_snapshot("gcs_smoke") @test(depends_on=[SetupEnvironment.prepare_slaves_5], - groups=["gcs_deploy_bvt"]) + groups=["gcs_bvt"]) @log_snapshot_after_test - def gcs_deploy_bvt(self): + def gcs_bvt(self): """Deploy HA cluster with GCS plugin installed and enabled. Scenario: @@ -147,4 +147,4 @@ class GcsTestClass(GcsTestBase): cluster_id=cluster_id, test_sets=['smoke', 'sanity', 'ha', 'tests_platform', 'cloudvalidation']) - self.env.make_snapshot("gcs_deploy_bvt") + self.env.make_snapshot("gcs_bvt")