blob: 90f0fd44a2b6773f911b7c5ffca8d7eddf912a1d [file] [log] [blame]
Dennis Dmitriev280d0712017-05-15 17:47:16 +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
15#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.rally_fixtures import *
20from tcp_tests.fixtures.salt_fixtures import *
21from tcp_tests.fixtures.common_services_fixtures import *
22from tcp_tests.fixtures.openstack_fixtures import *
23from tcp_tests.fixtures.opencontrail_fixtures import *
24
25__all__ = sorted([ # sort for documentation
26 # common_fixtures
27 'show_step',
28 'revert_snapshot',
29 'snapshot',
30 # config_fixtures
31 'config',
32 #underlay_fixtures
33 'hardware',
34 'underlay',
35 # rally_fixtures
36 'rally',
37 # salt_fixtures
38 'salt_actions',
39 'salt_deployed',
40 # common_services_fixtures
41 'common_services_actions',
42 'common_services_deployed',
43 # openstack_fixtures
44 'openstack_actions',
45 'openstack_deployed',
46 # component fixtures
47 'opencontrail',
48])