mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-07-30 20:18:12 +00:00
Fix missing argument Loader in bwruntests.py
This commit is contained in:
parent
197d06b6ad
commit
e09b72160a
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ the pyyaml library which is not installed.""",
|
|||
file=sys.stderr)
|
||||
exit(1)
|
||||
with open(args.test_file) as f:
|
||||
testyaml = yaml.load(f)
|
||||
testyaml = yaml.load(f, Loader=yaml.Loader)
|
||||
for testsetname, testv in testyaml.items():
|
||||
for testname, insn in testv.items():
|
||||
cmd = shlex.split(insn['command'])
|
||||
|
|
|
|||
Loading…
Reference in a new issue