Merge "testinfra: silence yaml.load() warnings"

This commit is contained in:
Zuul 2020-07-16 23:45:50 +00:00 committed by Gerrit Code Review
commit fdb446f0e3
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')