We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de3845 commit 0158579Copy full SHA for 0158579
tool/scripts/flakes
@@ -22,7 +22,7 @@ def find_test_files(root_dir: str) -> List[str]:
22
def run_single_test(test_path: str) -> int:
23
"""Run a single test and return its exit code."""
24
try:
25
- result = subprocess.run([test_path], capture_output=False)
+ result = subprocess.run(["ape", test_path], capture_output=False)
26
return result.returncode
27
except Exception as e:
28
print(f"Error running {test_path}: {e}")
0 commit comments