blob: f33b1b40cfa3cca56738ef6a3dff0fafd9e78398 [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
29from tcp_tests.fixtures.runtest_fixtures import * # noqa
30
31
32__all__ = sorted([ # sort for documentation
33 # common_fixtures
34 'show_step',
35 'func_name',
36 # config_fixtures
37 'config',
38 # rally_fixtures
39 'rally',
40 # salt_fixtures
41 'salt_actions',
Dennis Dmitrievea48cf52018-07-18 18:04:39 +030042 # core_fixtures
43 'core_actions',
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030044 # openstack_fixtures
45 'openstack_actions',
46 # oss_fixtures
47 'oss_actions',
48 # drivetrain_fixtures
49 'drivetrain_actions',
50 # decapod_fixtures
51 'decapod_actions',
52 # component fixtures
53 'opencontrail',
54 # stacklight_fixtures
55 'sl_actions',
56 'ceph_action',
57 # k8s fixtures
58 'k8s_actions',
59 # tempest
60 'tempest_actions'
61])