From 980b02df7112e51cee3f0a22587ce0d7ffd3c79a Mon Sep 17 00:00:00 2001 From: elfedy Date: Fri, 20 Dec 2024 15:43:23 -0300 Subject: [PATCH] Try bigger nextest timeout --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 56f40c364..21c36243b 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,6 @@ [profile.default] retries = { backoff = "exponential", count = 2, delay = "2s", jitter = true } -slow-timeout = { period = "1m", terminate-after = 3 } +slow-timeout = { period = "2m", terminate-after = 3 } [[profile.default.overrides]] filter = "test(/ext_integration|can_test_forge_std/)"