More yaml.safe_load() in testinfra/conftest.py
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
This commit is contained in:
parent
6b05c7db38
commit
d76fb17fba
@ -14,7 +14,7 @@ def zuul_data():
|
||||
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.load(f)
|
||||
extra = yaml.safe_load(f)
|
||||
data['extra'] = extra
|
||||
|
||||
return data
|
||||
|
Loading…
Reference in New Issue
Block a user