testinfra: silence yaml.load() warnings

Switch to safe_load to silence warnings in output

Change-Id: If91f79a4648920999de8e6bf6e0c9fec82fde233
This commit is contained in:
Ian Wienand 2020-07-13 14:08:21 +10:00
parent a020568ee5
commit 711b2493a9
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ def zuul_data():
data = {}
with open('/home/zuul/src/opendev.org/opendev/system-config/inventory/base/gate-hosts.yaml') as f:
inventory = yaml.load(f)
inventory = yaml.safe_load(f)
data['inventory'] = inventory
zuul_extra_data_file = os.environ.get('TESTINFRA_EXTRA_DATA')