Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ filter = 'binary(lint)'
slow-timeout = { period = "120s", terminate-after = 3 }

# These tests download test snapshots from the network, which can take a while.
# There might be some network issues, so we allow some retries with backoff.
# Jitter is enabled to avoid [thundering herd issues](https://en.wikipedia.org/wiki/Thundering_herd_problem).
[[profile.default.overrides]]
filter = 'test(rpc_test_)'
slow-timeout = { period = "120s", terminate-after = 3 }
slow-timeout = { period = "60s", terminate-after = 2 }
retries = { backoff = "exponential", count = 4, delay = "5s", jitter = true }
Loading