blob: 0627edeecdbd3d46a1a286150c0fb901ff7762bb [file] [log] [blame]
Dennis Dmitrievb5d74242016-10-18 14:05:29 +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
Dina Belova2b978a42017-09-19 14:10:52 -070015from tcp_tests.fixtures.common_fixtures import * # noqa
Tatyana Leontovicha754ce52017-11-13 16:46:43 +020016from tcp_tests.fixtures.ceph_fixtures import * # noqa
Dina Belova2b978a42017-09-19 14:10:52 -070017from 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
Dina Belova2b978a42017-09-19 14:10:52 -070022from 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
Dina Belova2b978a42017-09-19 14:10:52 -070027from tcp_tests.fixtures.k8s_fixtures import * # noqa
sgudzb67ce732018-02-13 17:58:31 +020028from tcp_tests.fixtures.drivetrain_fixtures import * # noqa
Dmitry Tyzhnenko35413c02018-03-05 14:12:37 +020029from tcp_tests.fixtures.day1_fixtures import * # noqa
Oleksii Butenkoe82441d2018-06-12 16:01:33 +030030from tcp_tests.fixtures.runtest_fixtures import * # noqa
Hanna Arhipova94a8abe2019-08-22 14:11:46 +030031from tcp_tests.fixtures.reclass_fixtures import * # noqa
Dmitry Tyzhnenko35413c02018-03-05 14:12:37 +020032
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020033
34__all__ = sorted([ # sort for documentation
35 # common_fixtures
36 'show_step',
37 'revert_snapshot',
38 'snapshot',
Dennis Dmitriev2d643bc2017-12-04 12:23:47 +020039 'func_name',
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020040 # config_fixtures
41 'config',
Dina Belovae6fdffb2017-09-19 13:58:34 -070042 # underlay_fixtures
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020043 'hardware',
44 'underlay',
Dennis Dmitriev9cc4ca32016-11-03 13:50:45 +020045 # rally_fixtures
46 'rally',
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020047 # salt_fixtures
48 'salt_actions',
49 'salt_deployed',
Dennis Dmitrievea48cf52018-07-18 18:04:39 +030050 # core_fixtures
51 'core_actions',
52 'core_deployed',
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020053 # openstack_fixtures
54 'openstack_actions',
55 'openstack_deployed',
Dennis Dmitrieveac3aab2017-07-12 16:36:41 +030056 # oss_fixtures
57 'oss_actions',
58 'oss_deployed',
Dennis Dmitriev0f08d9a2017-12-19 02:27:59 +020059 'oss_sl_os_deployed',
sgudzb67ce732018-02-13 17:58:31 +020060 # drivetrain_fixtures
Dennis Dmitrievabbb4a52018-03-27 15:27:48 +030061 'drivetrain_actions',
62 'drivetrain_deployed',
Dennis Dmitrievf3f90a52017-08-10 14:37:05 +030063 # decapod_fixtures
64 'decapod_actions',
65 'decapod_deployed',
Dennis Dmitriev2cbf2352016-11-11 15:34:21 +020066 # component fixtures
67 'opencontrail',
Tatyana Leontovich5acc82a2017-05-23 15:41:35 +030068 # stacklight_fixtures
69 'sl_actions',
Dennis Dmitrievea48cf52018-07-18 18:04:39 +030070 'stacklight_deployed',
Dennis Dmitriev513fdf72017-11-30 12:22:25 +020071 'sl_os_deployed',
Tatyana Leontovicha754ce52017-11-13 16:46:43 +020072 'ceph_deployed',
73 'ceph_action',
Artem Panchenko0594cd72017-06-12 13:25:26 +030074 # k8s fixtures
75 'k8s_actions',
Dmitry Tyzhnenko35413c02018-03-05 14:12:37 +020076 'k8s_deployed',
77 'day1_underlay',
78 'day1_cfg_config',
Oleksii Butenkoe82441d2018-06-12 16:01:33 +030079 'day1_salt_action',
80 # tempest
81 'tempest_actions'
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020082])