From 003f18f86c5c728920575cf1d34dd0f811607a51 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Wed, 4 May 2022 09:08:04 -0400 Subject: [PATCH] ci limit tests to 15 seconds --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index c4cf3ec02..a61ece3d6 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', '--parallel', str(os.cpu_count()), '--output-on-failure']) + ['ctest', '--timeout', '15', '--parallel', str(os.cpu_count()), '--output-on-failure']) def generate_code_coverage_report():