We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6600630 commit 5685297Copy full SHA for 5685297
1 file changed
bench_runner/scripts/workflow.py
@@ -53,12 +53,12 @@ def run_in_venv(
53
venv = Path(venv)
54
55
if util.get_simple_platform() == "windows":
56
- exe = Path("Scripts") / "python.exe"
+ exe = venv / "Scripts" / "python.exe"
57
else:
58
- exe = Path("bin") / "python"
+ exe = venv / "bin" / "python"
59
60
args = [
61
- str(venv / exe),
+ str(exe),
62
"-m",
63
module,
64
*cmd,
0 commit comments