mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-18 21:21:23 +00:00
Merge pull request #41 from pulp-platform/rt/fix-bwruntests
Fix missing argument `Loader` in `bwruntests.py`
This commit is contained in:
commit
e90f6e5327
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