Correct path in benchmark test #nolog

This commit is contained in:
Miguel Grinberg
2023-01-13 14:44:54 +00:00
parent f56c826149
commit 427a4d49de

View File

@@ -76,7 +76,7 @@ apps = [
for app, env, name in apps:
p = subprocess.Popen(
app.split() if isinstance(app, str) else app,
env={'PATH': os.environ['PATH'], **env},
env={'PATH': os.environ['PATH'] + ':../../bin', **env},
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL
)