Updating Tempest test sets

1. Tempest has the 'database' and 'messaging' sets as well.
   So these sets have been added.
2. Tempest doesn't have the 'dns' and 'application_catalog' sets.
   So these sets have been removed.

Change-Id: Ib16f265a41131af52eeb0f69b00625bfce453046
This commit is contained in:
Yaroslav Lobankov 2015-10-03 18:50:51 +03:00
parent 654c63e328
commit 6a0c2f5c9d
2 changed files with 5 additions and 5 deletions

View File

@ -79,7 +79,7 @@ class VerifyCommands(object):
set_name = "full"
if set_name and set_name not in (list(consts.TempestTestsSets) +
list(consts.TempestTestsAPI)):
print("Sorry, but there are no desired tempest test set. Please "
print("Sorry, but there are no desired Tempest test set. Please, "
"choose from: %s" % ", ".join(list(consts.TempestTestsSets) +
list(consts.TempestTestsAPI)))
return (1)

View File

@ -25,18 +25,18 @@ from rally.common import utils
class _TempestTestsAPI(utils.ImmutableMixin, utils.EnumMixin):
BAREMTAL = "baremetal"
BAREMETAL = "baremetal"
COMPUTE = "compute"
DNS = "dns"
DATA_PROCCESING = "data_processing"
DATA_PROCESSING = "data_processing"
DATABASE = "database"
IDENTITY = "identity"
IMAGE = "image"
MESSAGING = "messaging"
NETWORK = "network"
OBJECT_STORAGE = "object_storage"
ORCHESTRATION = "orchestration"
TELEMETRY = "telemetry"
VOLUME = "volume"
APPLICATION_CATALOG = "application_catalog"
class _TempestTestsSets(utils.ImmutableMixin, utils.EnumMixin):