blob: 015c7edac52a9d1be8511c3d2377d00847f6d2ad [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
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020015#from tcp_tests.fixtures import *
16from tcp_tests.fixtures.common_fixtures import *
17from tcp_tests.fixtures.config_fixtures import *
18from tcp_tests.fixtures.underlay_fixtures import *
Dennis Dmitriev9cc4ca32016-11-03 13:50:45 +020019from tcp_tests.fixtures.rally_fixtures import *
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020020from tcp_tests.fixtures.salt_fixtures import *
21from tcp_tests.fixtures.common_services_fixtures import *
22from tcp_tests.fixtures.openstack_fixtures import *
Dennis Dmitriev2cbf2352016-11-11 15:34:21 +020023from tcp_tests.fixtures.opencontrail_fixtures import *
Tatyana Leontovich5acc82a2017-05-23 15:41:35 +030024from tcp_tests.fixtures.stacklight_fixtures import *
vrovachevbc2f5ce2017-05-22 19:37:24 +040025from tcp_tests.fixtures.virtlet_fixtures import *
Victor Ryzhenkin655587f2017-05-24 20:00:07 +040026from tcp_tests.fixtures.virtlet_ceph_fixtures import *
Artem Panchenko0594cd72017-06-12 13:25:26 +030027from tcp_tests.fixtures.k8s_fixtures import *
Victor Ryzhenkin655587f2017-05-24 20:00:07 +040028
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020029
30__all__ = sorted([ # sort for documentation
31 # common_fixtures
32 'show_step',
33 'revert_snapshot',
34 'snapshot',
35 # config_fixtures
36 'config',
37 #underlay_fixtures
38 'hardware',
39 'underlay',
Dennis Dmitriev9cc4ca32016-11-03 13:50:45 +020040 # rally_fixtures
41 'rally',
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020042 # salt_fixtures
43 'salt_actions',
44 'salt_deployed',
45 # common_services_fixtures
46 'common_services_actions',
47 'common_services_deployed',
48 # openstack_fixtures
49 'openstack_actions',
50 'openstack_deployed',
Dennis Dmitriev2cbf2352016-11-11 15:34:21 +020051 # component fixtures
52 'opencontrail',
Tatyana Leontovich5acc82a2017-05-23 15:41:35 +030053 # stacklight_fixtures
54 'sl_actions',
55 'sl_deployed',
Artem Panchenko0594cd72017-06-12 13:25:26 +030056 # k8s fixtures
57 'k8s_actions',
58 'k8s_deployed',
vrovachevbc2f5ce2017-05-22 19:37:24 +040059 'virtlet_actions',
60 'virtlet_deployed',
Victor Ryzhenkin655587f2017-05-24 20:00:07 +040061 'virtlet_ceph_actions',
62 'virtlet_ceph_deployed'
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020063])