Changed naming for test groups to follow unified naming convention.

Change-Id: Ib9cbb1e032c8c8e44acc7d05dc2f906a3c389ad1
This commit is contained in:
Vitalii Yerys 2016-08-10 16:30:35 +03:00
parent 758541150a
commit 2e82da28ae
2 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ Smoke test
ID ID
## ##
gcs_deploy_smoke gcs_smoke
Description Description
########### ###########
@ -49,7 +49,7 @@ ID
## ##
gcs_deploy_bvt gcs_bvt
Description Description
########### ###########

View File

@ -30,9 +30,9 @@ class GcsTestClass(GcsTestBase):
"""GcsTestBase.""" # TODO(unknown) documentation """GcsTestBase.""" # TODO(unknown) documentation
@test(depends_on=[SetupEnvironment.prepare_slaves_3], @test(depends_on=[SetupEnvironment.prepare_slaves_3],
groups=["gcs_deploy_smoke"]) groups=["gcs_smoke"])
@log_snapshot_after_test @log_snapshot_after_test
def gcs_deploy_smoke(self): def gcs_smoke(self):
"""Deploy non HA cluster with GCS plugin installed and enabled. """Deploy non HA cluster with GCS plugin installed and enabled.
Scenario: Scenario:
@ -80,12 +80,12 @@ class GcsTestClass(GcsTestBase):
check_services=False check_services=False
) )
self.env.make_snapshot("gcs_deploy_smoke") self.env.make_snapshot("gcs_smoke")
@test(depends_on=[SetupEnvironment.prepare_slaves_5], @test(depends_on=[SetupEnvironment.prepare_slaves_5],
groups=["gcs_deploy_bvt"]) groups=["gcs_bvt"])
@log_snapshot_after_test @log_snapshot_after_test
def gcs_deploy_bvt(self): def gcs_bvt(self):
"""Deploy HA cluster with GCS plugin installed and enabled. """Deploy HA cluster with GCS plugin installed and enabled.
Scenario: Scenario:
@ -147,4 +147,4 @@ class GcsTestClass(GcsTestBase):
cluster_id=cluster_id, cluster_id=cluster_id,
test_sets=['smoke', 'sanity', 'ha', 'tests_platform', test_sets=['smoke', 'sanity', 'ha', 'tests_platform',
'cloudvalidation']) 'cloudvalidation'])
self.env.make_snapshot("gcs_deploy_bvt") self.env.make_snapshot("gcs_bvt")