2021-02-01 18:12:51 +01:00
|
|
|
# standard imports
|
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
|
2021-06-30 20:15:40 +02:00
|
|
|
# external imports
|
2021-02-01 18:12:51 +01:00
|
|
|
import pytest
|
|
|
|
import confini
|
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
2021-06-30 20:15:40 +02:00
|
|
|
root_dir = os.path.dirname(os.path.dirname(script_dir))
|
|
|
|
logg = logging.getLogger(__name__)
|
2021-02-01 18:12:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def load_config():
|
|
|
|
config_dir = os.path.join(root_dir, 'config/test')
|
|
|
|
conf = confini.Config(config_dir, 'CICTEST')
|
|
|
|
conf.process()
|
|
|
|
logg.debug('config {}'.format(conf))
|
|
|
|
return conf
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def config(
|
|
|
|
load_config
|
|
|
|
):
|
|
|
|
return load_config
|