d76fb17fba
Previous change If91f79a4648920999de8e6bf6e0c9fec82fde233 replaced one of the instances of yaml.load() in this file with safe_load() in order to silence what were then warnings. Now they're errors with current PyYAML, so go ahead and update the other one. Change-Id: If9f839f60cd71be8be141423ef2b93884d8aeba7
21 lines
517 B
Python
21 lines
517 B
Python
import os
|
|
import pytest
|
|
import yaml
|
|
|
|
@pytest.fixture
|
|
def zuul_data():
|
|
|
|
data = {}
|
|
|
|
with open('/home/zuul/src/opendev.org/opendev/system-config/inventory/base/gate-hosts.yaml') as f:
|
|
inventory = yaml.safe_load(f)
|
|
data['inventory'] = inventory
|
|
|
|
zuul_extra_data_file = os.environ.get('TESTINFRA_EXTRA_DATA')
|
|
if os.path.exists(zuul_extra_data_file):
|
|
with open(zuul_extra_data_file, 'r') as f:
|
|
extra = yaml.safe_load(f)
|
|
data['extra'] = extra
|
|
|
|
return data
|