blob: eec02426f18e684dbb1e4dfb68eaa3a86e1921eb [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 *
19from tcp_tests.fixtures.salt_fixtures import *
20from tcp_tests.fixtures.common_services_fixtures import *
21from tcp_tests.fixtures.openstack_fixtures import *
22
23__all__ = sorted([ # sort for documentation
24 # common_fixtures
25 'show_step',
26 'revert_snapshot',
27 'snapshot',
28 # config_fixtures
29 'config',
30 #underlay_fixtures
31 'hardware',
32 'underlay',
33 # salt_fixtures
34 'salt_actions',
35 'salt_deployed',
36 # common_services_fixtures
37 'common_services_actions',
38 'common_services_deployed',
39 # openstack_fixtures
40 'openstack_actions',
41 'openstack_deployed',
42])