diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py index 600a559909..f889c449b5 100644 --- a/tempest/scenario/manager.py +++ b/tempest/scenario/manager.py @@ -79,8 +79,6 @@ class ScenarioTest(tempest.test.BaseTestCase): cls.security_groups_client = cls.manager.security_groups_client cls.security_group_rules_client = ( cls.manager.security_group_rules_client) - # Heat client - cls.orchestration_client = cls.manager.orchestration_client if CONF.volume_feature_enabled.api_v1: cls.volumes_client = cls.manager.volumes_client diff --git a/tempest/test.py b/tempest/test.py index f84bf6ba79..97ab25c421 100644 --- a/tempest/test.py +++ b/tempest/test.py @@ -72,13 +72,9 @@ def get_service_list(): 'image': CONF.service_available.glance, 'baremetal': CONF.service_available.ironic, 'volume': CONF.service_available.cinder, - 'orchestration': CONF.service_available.heat, - # NOTE(mtreinish) nova-network will provide networking functionality - # if neutron isn't available, so always set to True. 'network': True, 'identity': True, 'object_storage': CONF.service_available.swift, - 'data_processing': CONF.service_available.sahara, } return service_list @@ -90,8 +86,8 @@ def services(*args): exercised by a test case. """ def decorator(f): - services = ['compute', 'image', 'baremetal', 'volume', 'orchestration', - 'network', 'identity', 'object_storage', 'data_processing'] + services = ['compute', 'image', 'baremetal', 'volume', + 'network', 'identity', 'object_storage'] for service in args: if service not in services: raise exceptions.InvalidServiceTag('%s is not a valid '