From 96c68db0de4705a9e26fb3be24bdf68505b305ea Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Mon, 9 Feb 2026 00:27:21 +0100 Subject: [PATCH] Add timeout to test execution --- Buildscripts/DevicetreeCompiler/tests/test_integration.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Buildscripts/DevicetreeCompiler/tests/test_integration.py b/Buildscripts/DevicetreeCompiler/tests/test_integration.py index 343d8d81..deaeee0b 100644 --- a/Buildscripts/DevicetreeCompiler/tests/test_integration.py +++ b/Buildscripts/DevicetreeCompiler/tests/test_integration.py @@ -16,7 +16,8 @@ def run_compiler(config_path, output_path): [sys.executable, COMPILE_SCRIPT, config_path, output_path], capture_output=True, text=True, - cwd=PROJECT_ROOT + cwd=PROJECT_ROOT, + timeout=60 ) return result