Skip to content

Commit

Permalink
Use ape interpreter in flakes program
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Dec 24, 2024
1 parent 2de3845 commit 0158579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/scripts/flakes
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def find_test_files(root_dir: str) -> List[str]:
def run_single_test(test_path: str) -> int:
"""Run a single test and return its exit code."""
try:
result = subprocess.run([test_path], capture_output=False)
result = subprocess.run(["ape", test_path], capture_output=False)
return result.returncode
except Exception as e:
print(f"Error running {test_path}: {e}")
Expand Down

0 comments on commit 0158579

Please sign in to comment.