senlin/senlin/tests/drivers/os_test/__init__.py

36 lines
1.4 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from senlin.tests.drivers.os_test import cinder_v2
from senlin.tests.drivers.os_test import glance_v2
from senlin.tests.drivers.os_test import heat_v1
from senlin.tests.drivers.os_test import keystone_v3
from senlin.tests.drivers.os_test import lbaas
from senlin.tests.drivers.os_test import mistral_v2
from senlin.tests.drivers.os_test import neutron_v2
from senlin.tests.drivers.os_test import nova_v2
from senlin.tests.drivers.os_test import octavia_v2
from senlin.tests.drivers.os_test import zaqar_v2
block_storage = cinder_v2.CinderClient
compute = nova_v2.NovaClient
glance = glance_v2.GlanceClient
identity = keystone_v3.KeystoneClient
loadbalancing = lbaas.LoadBalancerDriver
message = zaqar_v2.ZaqarClient
network = neutron_v2.NeutronClient
octavia = octavia_v2.OctaviaClient
orchestration = heat_v1.HeatClient
workflow = mistral_v2.MistralClient