From e09b72160aa4ec27a1492d49a698a65082dafe35 Mon Sep 17 00:00:00 2001 From: Riccardo Tedeschi Date: Mon, 12 Feb 2024 18:40:49 +0100 Subject: [PATCH] Fix missing argument `Loader` in `bwruntests.py` --- scripts/bwruntests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bwruntests.py b/scripts/bwruntests.py index 2c8908b..f9d58ee 100755 --- a/scripts/bwruntests.py +++ b/scripts/bwruntests.py @@ -246,7 +246,7 @@ def proc_out(cwd, stdout, stderr): 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'])