blob: 8a2aa2740d9e1579e489f527a6cb35888123d806 [file] [log] [blame]
Dennis Dmitriev6f59add2016-10-18 13:45:27 +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.
14import os
15
16import pytest
17
18from tcp_tests import settings_oslo
19
20
21@pytest.fixture(scope='session')
22def config():
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020023 """Get the global config options from oslo.config INI file"""
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030024 config_files = []
25
26 tests_configs = os.environ.get('TESTS_CONFIGS', None)
27 if tests_configs:
28 for test_config in tests_configs.split(','):
29 config_files.append(test_config)
30
31 config_opts = settings_oslo.load_config(config_files)
32
33 return config_opts