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 }