| 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 * | 
| Dennis Dmitriev | eac3aab | 2017-07-12 16:36:41 +0300 | [diff] [blame] | 24 | from tcp_tests.fixtures.oss_fixtures import * | 
| Dennis Dmitriev | f3f90a5 | 2017-08-10 14:37:05 +0300 | [diff] [blame^] | 25 | from tcp_tests.fixtures.decapod_fixtures import * | 
| Tatyana Leontovich | 5acc82a | 2017-05-23 15:41:35 +0300 | [diff] [blame] | 26 | from tcp_tests.fixtures.stacklight_fixtures import * | 
| vrovachev | bc2f5ce | 2017-05-22 19:37:24 +0400 | [diff] [blame] | 27 | from tcp_tests.fixtures.virtlet_fixtures import * | 
| Victor Ryzhenkin | 655587f | 2017-05-24 20:00:07 +0400 | [diff] [blame] | 28 | from tcp_tests.fixtures.virtlet_ceph_fixtures import * | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 29 | from tcp_tests.fixtures.k8s_fixtures import * | 
| Victor Ryzhenkin | 655587f | 2017-05-24 20:00:07 +0400 | [diff] [blame] | 30 |  | 
| Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 31 |  | 
|  | 32 | __all__ = sorted([  # sort for documentation | 
|  | 33 | # common_fixtures | 
|  | 34 | 'show_step', | 
|  | 35 | 'revert_snapshot', | 
|  | 36 | 'snapshot', | 
|  | 37 | # config_fixtures | 
|  | 38 | 'config', | 
|  | 39 | #underlay_fixtures | 
|  | 40 | 'hardware', | 
|  | 41 | 'underlay', | 
| Dennis Dmitriev | 9cc4ca3 | 2016-11-03 13:50:45 +0200 | [diff] [blame] | 42 | # rally_fixtures | 
|  | 43 | 'rally', | 
| Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 44 | # salt_fixtures | 
|  | 45 | 'salt_actions', | 
|  | 46 | 'salt_deployed', | 
|  | 47 | # common_services_fixtures | 
|  | 48 | 'common_services_actions', | 
|  | 49 | 'common_services_deployed', | 
|  | 50 | # openstack_fixtures | 
|  | 51 | 'openstack_actions', | 
|  | 52 | 'openstack_deployed', | 
| Dennis Dmitriev | eac3aab | 2017-07-12 16:36:41 +0300 | [diff] [blame] | 53 | # oss_fixtures | 
|  | 54 | 'oss_actions', | 
|  | 55 | 'oss_deployed', | 
| Dennis Dmitriev | f3f90a5 | 2017-08-10 14:37:05 +0300 | [diff] [blame^] | 56 | # decapod_fixtures | 
|  | 57 | 'decapod_actions', | 
|  | 58 | 'decapod_deployed', | 
| Dennis Dmitriev | 2cbf235 | 2016-11-11 15:34:21 +0200 | [diff] [blame] | 59 | # component fixtures | 
|  | 60 | 'opencontrail', | 
| Tatyana Leontovich | 5acc82a | 2017-05-23 15:41:35 +0300 | [diff] [blame] | 61 | # stacklight_fixtures | 
|  | 62 | 'sl_actions', | 
|  | 63 | 'sl_deployed', | 
| Artem Panchenko | 0594cd7 | 2017-06-12 13:25:26 +0300 | [diff] [blame] | 64 | # k8s fixtures | 
|  | 65 | 'k8s_actions', | 
|  | 66 | 'k8s_deployed', | 
| vrovachev | bc2f5ce | 2017-05-22 19:37:24 +0400 | [diff] [blame] | 67 | 'virtlet_actions', | 
|  | 68 | 'virtlet_deployed', | 
| Victor Ryzhenkin | 655587f | 2017-05-24 20:00:07 +0400 | [diff] [blame] | 69 | 'virtlet_ceph_actions', | 
|  | 70 | 'virtlet_ceph_deployed' | 
| Dennis Dmitriev | 010f4cd | 2016-11-01 20:43:51 +0200 | [diff] [blame] | 71 | ]) |