Merge "Change not existing tests classes in murano test" into stable/4.1

This commit is contained in:
Jenkins 2014-06-09 13:00:26 +00:00 committed by Gerrit Code Review
commit d78592dddb
1 changed files with 10 additions and 11 deletions

View File

@ -207,18 +207,17 @@ class MuranoSimple(TestBasic):
settings.SERVTEST_MURANO_IMAGE,
settings.SERVTEST_MURANO_IMAGE_NAME,
settings.SERVTEST_MURANO_IMAGE_META)
LOGGER.debug('Create key murano-lb-key')
common_func.create_key('murano-lb-key')
LOGGER.debug('Run OSTF platform tests')
test_class_main = ('fuel_health.tests.platform_tests'
'.test_murano.MuranoDeploymentSmokeTests')
tests_names = ['test_deploy_demo_service',
'test_deploy_telnet_service',
'test_deploy_apache_service']
test_classes = []
for test_name in tests_names:
test_classes.append('{0}.{1}'.format(test_class_main,
test_name))
test_classes = ["fuel_health.tests.platform_tests."
"test_platform_murano_linux."
"MuranoDeployDemoServiceTests."
"test_deploy_demo_service",
"fuel_health.tests.platform_tests."
"test_platform_murano_linux."
"MuranoDeployLinuxServicesTests."
"test_deploy_telnet_service"
]
self.fuel_web.run_ostf(
cluster_id=self.fuel_web.get_last_created_cluster(),