blob: 86ea8f7914990947927578405b525924b60c6c9a [file] [log] [blame]
Dennis Dmitrievb3b37492018-07-08 21:23:00 +03001# Copyright 2016 Mirantis, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15from tcp_tests.fixtures.common_fixtures import * # noqa
16from tcp_tests.fixtures.ceph_fixtures import * # noqa
17from tcp_tests.fixtures.config_fixtures import * # noqa
18from tcp_tests.fixtures.underlay_fixtures import * # noqa
19from tcp_tests.fixtures.rally_fixtures import * # noqa
20from tcp_tests.fixtures.salt_fixtures import * # noqa
Dennis Dmitrievea48cf52018-07-18 18:04:39 +030021from tcp_tests.fixtures.core_fixtures import * # noqa
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030022from tcp_tests.fixtures.openstack_fixtures import * # noqa
23from tcp_tests.fixtures.opencontrail_fixtures import * # noqa
24from tcp_tests.fixtures.oss_fixtures import * # noqa
25from tcp_tests.fixtures.decapod_fixtures import * # noqa
26from tcp_tests.fixtures.stacklight_fixtures import * # noqa
27from tcp_tests.fixtures.k8s_fixtures import * # noqa
28from tcp_tests.fixtures.drivetrain_fixtures import * # noqa
Pavel Glazov6ed8d442022-09-20 12:50:18 +040029from tcp_tests.fixtures.runtest_fixtures import * # noqa
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030030
31__all__ = sorted([ # sort for documentation
32 # common_fixtures
33 'show_step',
34 'func_name',
35 # config_fixtures
36 'config',
37 # rally_fixtures
38 'rally',
39 # salt_fixtures
40 'salt_actions',
Dennis Dmitrievea48cf52018-07-18 18:04:39 +030041 # core_fixtures
42 'core_actions',
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030043 # openstack_fixtures
44 'openstack_actions',
45 # oss_fixtures
46 'oss_actions',
47 # drivetrain_fixtures
48 'drivetrain_actions',
49 # decapod_fixtures
50 'decapod_actions',
51 # component fixtures
52 'opencontrail',
53 # stacklight_fixtures
54 'sl_actions',
55 'ceph_action',
56 # k8s fixtures
57 'k8s_actions',
58 # tempest
59 'tempest_actions'
60])