Skip to content

Commit c311afd

Browse files
rchen152facebook-github-bot
authored andcommitted
Fix path to pyrefly executable in test.py cargo executor
Summary: We're not building with `--release`, so the executable ends up in debug/, not release/. Reviewed By: grievejia Differential Revision: D75497923 fbshipit-source-id: 484f00497021a28f1a06b4ab8977ec7b391b48fc
1 parent 27b7c4f commit c311afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def conformance(self) -> None:
142142
"conformance/conformance_output.py",
143143
"conformance/third_party",
144144
"--executable",
145-
f"{cargo_target_dir}/release/pyrefly",
145+
f"{cargo_target_dir}/debug/pyrefly",
146146
]
147147
)
148148

0 commit comments

Comments
 (0)