Skip to content

Commit 0158579

Browse files
committed
Use ape interpreter in flakes program
1 parent 2de3845 commit 0158579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/scripts/flakes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def find_test_files(root_dir: str) -> List[str]:
2222
def run_single_test(test_path: str) -> int:
2323
"""Run a single test and return its exit code."""
2424
try:
25-
result = subprocess.run([test_path], capture_output=False)
25+
result = subprocess.run(["ape", test_path], capture_output=False)
2626
return result.returncode
2727
except Exception as e:
2828
print(f"Error running {test_path}: {e}")

0 commit comments

Comments
 (0)