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 | |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 15 | #from tcp_tests.fixtures import * |
| 16 | from tcp_tests.fixtures.common_fixtures import * |
| 17 | from tcp_tests.fixtures.config_fixtures import * |
| 18 | from tcp_tests.fixtures.underlay_fixtures import * |
Dennis Dmitriev | 9cc4ca3 | 2016-11-03 13:50:45 +0200 | [diff] [blame] | 19 | from tcp_tests.fixtures.rally_fixtures import * |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 20 | from tcp_tests.fixtures.salt_fixtures import * |
| 21 | from tcp_tests.fixtures.common_services_fixtures import * |
| 22 | from tcp_tests.fixtures.openstack_fixtures import * |
Dennis Dmitriev | 2cbf235 | 2016-11-11 15:34:21 +0200 | [diff] [blame] | 23 | from tcp_tests.fixtures.opencontrail_fixtures import * |
Tatyana Leontovich | 5acc82a | 2017-05-23 15:41:35 +0300 | [diff] [blame] | 24 | from tcp_tests.fixtures.stacklight_fixtures import * |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 25 | |
| 26 | __all__ = sorted([ # sort for documentation |
| 27 | # common_fixtures |
| 28 | 'show_step', |
| 29 | 'revert_snapshot', |
| 30 | 'snapshot', |
| 31 | # config_fixtures |
| 32 | 'config', |
| 33 | #underlay_fixtures |
| 34 | 'hardware', |
| 35 | 'underlay', |
Dennis Dmitriev | 9cc4ca3 | 2016-11-03 13:50:45 +0200 | [diff] [blame] | 36 | # rally_fixtures |
| 37 | 'rally', |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 38 | # salt_fixtures |
| 39 | 'salt_actions', |
| 40 | 'salt_deployed', |
| 41 | # common_services_fixtures |
| 42 | 'common_services_actions', |
| 43 | 'common_services_deployed', |
| 44 | # openstack_fixtures |
| 45 | 'openstack_actions', |
| 46 | 'openstack_deployed', |
Dennis Dmitriev | 2cbf235 | 2016-11-11 15:34:21 +0200 | [diff] [blame] | 47 | # component fixtures |
| 48 | 'opencontrail', |
Tatyana Leontovich | 5acc82a | 2017-05-23 15:41:35 +0300 | [diff] [blame] | 49 | # stacklight_fixtures |
| 50 | 'sl_actions', |
| 51 | 'sl_deployed', |
Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 52 | ]) |