From 3e559590c957dc1e68efc9120869e39d304bbcfc Mon Sep 17 00:00:00 2001 From: hanabi1224 Date: Mon, 18 Aug 2025 17:50:30 +0800 Subject: [PATCH] fix(test): increase nextest timeout for rpc snapshot tests --- .config/nextest.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index bfdad1d17591..993e25cd1513 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -33,3 +33,8 @@ slow-timeout = { period = "120s", terminate-after = 3 } # lint runs `cargo check` for source file discovery, which can take a while filter = 'binary(lint)' slow-timeout = { period = "120s", terminate-after = 3 } + +# These tests download test snapshots from the network, which can take a while. +[[profile.default.overrides]] +filter = 'test(rpc_test_)' +slow-timeout = { period = "120s", terminate-after = 3 }