Skip to content
Snippets Groups Projects
Commit 0941ff1a authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

benchmark: actually pass the environment to the child during "perf" benchmark

oops
parent cbe1adb8
No related branches found
No related tags found
1 merge request!18various small improvements
......@@ -437,6 +437,7 @@
r = subprocess.run(
cmd,
cwd=cwd,
env=env,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
......@@ -444,7 +445,6 @@
raise errors.BenchmarkRunFailure(
command=cmd,
cwd=cwd,
env=env,
return_code=r.returncode,
stdout=r.stdout,
stderr=r.stderr,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment