Dennis Dmitriev | b5d7424 | 2016-10-18 14:05:29 +0300 | [diff] [blame] | 1 | # 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 Belova | 2b978a4 | 2017-09-19 14:10:52 -0700 | [diff] [blame] | 15 | from tcp_tests.fixtures.common_fixtures import * # noqa |
Tatyana Leontovich | a754ce5 | 2017-11-13 16:46:43 +0200 | [diff] [blame] | 16 | from tcp_tests.fixtures.ceph_fixtures import * # noqa |
Dina Belova | 2b978a4 | 2017-09-19 14:10:52 -0700 | [diff] [blame] | 17 | from tcp_tests.fixtures.config_fixtures import * # noqa |
| 18 | from tcp_tests.fixtures.underlay_fixtures import * # noqa |
| 19 | from tcp_tests.fixtures.rally_fixtures import * # noqa |
| 20 | from tcp_tests.fixtures.salt_fixtures import * # noqa |
| 21 | from tcp_tests.fixtures.common_services_fixtures import * # noqa |
| 22 | from tcp_tests.fixtures.openstack_fixtures import * # noqa |
| 23 | from tcp_tests.fixtures.opencontrail_fixtures import * # noqa |
| 24 | from tcp_tests.fixtures.oss_fixtures import * # noqa |
| 25 | from tcp_tests.fixtures.decapod_fixtures import * # noqa |
| 26 | from tcp_tests.fixtures.stacklight_fixtures import * # noqa |
Dina Belova | 2b978a4 | 2017-09-19 14:10:52 -0700 | [diff] [blame] | 27 | from tcp_tests.fixtures.k8s_fixtures import * # noqa |
sgudz | b67ce73 | 2018-02-13 17:58:31 +0200 | [diff] [blame^] | 28 | from tcp_tests.fixtures.drivetrain_fixtures import * # noqa |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 29 | |
| 30 | __all__ = sorted([ # sort for documentation |
| 31 | # common_fixtures |
| 32 | 'show_step', |
| 33 | 'revert_snapshot', |
| 34 | 'snapshot', |
Dennis Dmitriev | 2d643bc | 2017-12-04 12:23:47 +0200 | [diff] [blame] | 35 | 'func_name', |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 36 | # config_fixtures |
| 37 | 'config', |
Dina Belova | e6fdffb | 2017-09-19 13:58:34 -0700 | [diff] [blame] | 38 | # underlay_fixtures |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 39 | 'hardware', |
| 40 | 'underlay', |
Dennis Dmitriev | 9cc4ca3 | 2016-11-03 13:50:45 +0200 | [diff] [blame] | 41 | # rally_fixtures |
| 42 | 'rally', |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 43 | # salt_fixtures |
| 44 | 'salt_actions', |
| 45 | 'salt_deployed', |
| 46 | # common_services_fixtures |
| 47 | 'common_services_actions', |
| 48 | 'common_services_deployed', |
| 49 | # openstack_fixtures |
| 50 | 'openstack_actions', |
| 51 | 'openstack_deployed', |
Dennis Dmitriev | eac3aab | 2017-07-12 16:36:41 +0300 | [diff] [blame] | 52 | # oss_fixtures |
| 53 | 'oss_actions', |
| 54 | 'oss_deployed', |
Dennis Dmitriev | 0f08d9a | 2017-12-19 02:27:59 +0200 | [diff] [blame] | 55 | 'oss_sl_os_deployed', |
sgudz | b67ce73 | 2018-02-13 17:58:31 +0200 | [diff] [blame^] | 56 | # drivetrain_fixtures |
| 57 | 'drivetrain_actions' |
| 58 | 'drivetrain_deployed' |
Dennis Dmitriev | f3f90a5 | 2017-08-10 14:37:05 +0300 | [diff] [blame] | 59 | # decapod_fixtures |
| 60 | 'decapod_actions', |
| 61 | 'decapod_deployed', |
Dennis Dmitriev | 2cbf235 | 2016-11-11 15:34:21 +0200 | [diff] [blame] | 62 | # component fixtures |
| 63 | 'opencontrail', |
Tatyana Leontovich | 5acc82a | 2017-05-23 15:41:35 +0300 | [diff] [blame] | 64 | # stacklight_fixtures |
| 65 | 'sl_actions', |
| 66 | 'sl_deployed', |
Dennis Dmitriev | 513fdf7 | 2017-11-30 12:22:25 +0200 | [diff] [blame] | 67 | 'sl_os_deployed', |
Tatyana Leontovich | a754ce5 | 2017-11-13 16:46:43 +0200 | [diff] [blame] | 68 | 'ceph_deployed', |
| 69 | 'ceph_action', |
Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 70 | # k8s fixtures |
| 71 | 'k8s_actions', |
Victor Ryzhenkin | 3ffa2b4 | 2017-10-05 16:38:44 +0400 | [diff] [blame] | 72 | 'k8s_deployed' |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 73 | ]) |