From 85e3e2387845bd29c9f85b406623e41d36b66808 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Mon, 9 May 2022 13:40:48 -0400 Subject: [PATCH] ci bump test timeout to 30 seconds [skip ci] The ARM runners are a lot slower. --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index a61ece3d6..efdfbe6c4 100755 --- a/tests/main.py +++ b/tests/main.py @@ -123,7 +123,7 @@ def run_tests(options_name): os.chdir(get_build_dir(options_name)) subprocess.check_call( - ['ctest', '--timeout', '15', '--parallel', str(os.cpu_count()), '--output-on-failure']) + ['ctest', '--timeout', '30', '--parallel', str(os.cpu_count()), '--output-on-failure']) def generate_code_coverage_report():