We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab32be1 commit b793971Copy full SHA for b793971
benchmarks/bm_runner.py
@@ -36,7 +36,7 @@ def _subprocess_run_print(args, **kwargs):
36
# Use subprocess for printing to reduce chance of printing out of sequence
37
# with the subsequent calls.
38
subprocess.run(["echo", f"BM_RUNNER DEBUG: {' '.join(args)}"])
39
- kwargs["check"] = True
+ kwargs.setdefault("check", True)
40
return subprocess.run(args, **kwargs)
41
42
0 commit comments