blob: 9aa021eedcd7102f07c9bb42f75bd22893c98231 [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
16from tcp_tests.fixtures.config_fixtures import * # noqa
17from tcp_tests.fixtures.underlay_fixtures import * # noqa
18from tcp_tests.fixtures.rally_fixtures import * # noqa
19from tcp_tests.fixtures.salt_fixtures import * # noqa
20from tcp_tests.fixtures.common_services_fixtures import * # noqa
21from tcp_tests.fixtures.openstack_fixtures import * # noqa
22from tcp_tests.fixtures.opencontrail_fixtures import * # noqa
23from tcp_tests.fixtures.oss_fixtures import * # noqa
24from tcp_tests.fixtures.decapod_fixtures import * # noqa
25from tcp_tests.fixtures.stacklight_fixtures import * # noqa
Dina Belova2b978a42017-09-19 14:10:52 -070026from tcp_tests.fixtures.k8s_fixtures import * # noqa
Victor Ryzhenkin655587f2017-05-24 20:00:07 +040027
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020028
29__all__ = sorted([ # sort for documentation
30 # common_fixtures
31 'show_step',
32 'revert_snapshot',
33 'snapshot',
34 # config_fixtures
35 'config',
Dina Belovae6fdffb2017-09-19 13:58:34 -070036 # underlay_fixtures
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020037 'hardware',
38 'underlay',
Dennis Dmitriev9cc4ca32016-11-03 13:50:45 +020039 # rally_fixtures
40 'rally',
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020041 # salt_fixtures
42 'salt_actions',
43 'salt_deployed',
44 # common_services_fixtures
45 'common_services_actions',
46 'common_services_deployed',
47 # openstack_fixtures
48 'openstack_actions',
49 'openstack_deployed',
Dennis Dmitrieveac3aab2017-07-12 16:36:41 +030050 # oss_fixtures
51 'oss_actions',
52 'oss_deployed',
Dennis Dmitrievf3f90a52017-08-10 14:37:05 +030053 # decapod_fixtures
54 'decapod_actions',
55 'decapod_deployed',
Dennis Dmitriev2cbf2352016-11-11 15:34:21 +020056 # component fixtures
57 'opencontrail',
Tatyana Leontovich5acc82a2017-05-23 15:41:35 +030058 # stacklight_fixtures
59 'sl_actions',
60 'sl_deployed',
Artem Panchenko0594cd72017-06-12 13:25:26 +030061 # k8s fixtures
62 'k8s_actions',
Victor Ryzhenkin3ffa2b42017-10-05 16:38:44 +040063 'k8s_deployed'
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020064])