From 0c8e7d41cea95b47f8fcd5965c8778b4d96aaaed Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Fri, 17 Oct 2025 13:57:22 +0200 Subject: [PATCH] config: runtime: base: lava: extend timeout for coverage-enabled jobs When test coverage is enabled, we need to prepare the test run and pack the coverage artifacts once the tests are complete. This takes a significant amount of time, leading some jobs to time out during this packing operation. Increase the timeout value for such jobs by another 10 minutes in order to prevent such failures from happening Signed-off-by: Arnaud Ferraris --- config/runtime/base/lava.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime/base/lava.jinja2 b/config/runtime/base/lava.jinja2 index ad07af4bfc..852be98714 100644 --- a/config/runtime/base/lava.jinja2 +++ b/config/runtime/base/lava.jinja2 @@ -36,7 +36,7 @@ context: {% endif %} {%- if "coverage" in node.data.config_full -%} -{%- set coverage_timeout = 20 -%} +{%- set coverage_timeout = 30 -%} {%- else -%} {%- set coverage_timeout = 0 -%} {%- endif -%}