From 682703c67a1d29b8f5507b397010bcc65484a3c6 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Mon, 20 Feb 2023 22:30:37 +0100 Subject: [PATCH] ci(tests): increase timeout from 30 to 300 sec --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index bbca7abb0..e33851155 100755 --- a/tests/main.py +++ b/tests/main.py @@ -102,7 +102,7 @@ def run_tests(options_name): os.chdir(get_build_dir(options_name)) subprocess.check_call( - ['ctest', '--timeout', '30', '--parallel', str(os.cpu_count()), '--output-on-failure']) + ['ctest', '--timeout', '300', '--parallel', str(os.cpu_count()), '--output-on-failure']) def generate_code_coverage_report():