From de65180c15929befa470c039da161010c28aa4c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 27 Mar 2025 17:08:20 +0200 Subject: [PATCH] ci: Configure nextest timeout in the right place Part-of: --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 34b23d16b..e209895b3 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,7 +1,7 @@ [profile.ci] failure-output = "immediate-final" fail-fast = false +slow-timeout = { period = "20s", terminate-after = 4, grace-period = "5s" } [profile.ci.junit] path = "junit.xml" -slow-timeout = { period = "20s", terminate-after = 4, grace-period = "5s" }