From 691a20c3747d7898f29ec3a872445956b92f3878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Ci=C4=99=C5=BCarkiewicz?= Date: Mon, 18 Nov 2024 16:08:42 -0800 Subject: [PATCH] chore(ci): increase cargo nextest timeout Serialized tests with electrs seems to be taking longer in the CI now. --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index c2bcdef5988..b94008fc424 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -9,7 +9,7 @@ slow-timeout = { period = "30s", terminate-after = 4 } [profile.dev] [profile.ci] -slow-timeout = { period = "30s", terminate-after = 2 } +slow-timeout = { period = "30s", terminate-after = 3 } # ccov seems MUCH slower, especially in Nix sandbox # possibly due to writing to a shared tracing file(?)