Add timeout to test execution

This commit is contained in:
Ken Van Hoeylandt 2026-02-09 00:27:21 +01:00
parent 603a8f478e
commit 96c68db0de

View File

@ -16,7 +16,8 @@ def run_compiler(config_path, output_path):
[sys.executable, COMPILE_SCRIPT, config_path, output_path], [sys.executable, COMPILE_SCRIPT, config_path, output_path],
capture_output=True, capture_output=True,
text=True, text=True,
cwd=PROJECT_ROOT cwd=PROJECT_ROOT,
timeout=60
) )
return result return result