From 91b41af3f66128e90b994a135f570f585a17b241 Mon Sep 17 00:00:00 2001 From: Tatyana Leontovich Date: Fri, 30 May 2014 14:47:04 +0000 Subject: [PATCH] Change not existing tests classes in murano test We try to invoke non existing tests here, in part run ostf. Change murano ostf test class path. Also delete unused create keypair method Change-Id: Iadcc83a72f5cb9071be3838e12d03a6537cd213e Related-Bug: #1320181 --- fuelweb_test/tests/test_services.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/fuelweb_test/tests/test_services.py b/fuelweb_test/tests/test_services.py index 0b3685b9e..ff27f1f9a 100644 --- a/fuelweb_test/tests/test_services.py +++ b/fuelweb_test/tests/test_services.py @@ -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(),