Skip to content

Commit

Permalink
Decrease timeout and add retry (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham authored Aug 15, 2023
1 parent d497652 commit 91ee13b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ failure-output = "immediate-final"
status-level = "skip"
# Do not cancel the test run on the first failure.
fail-fast = false
# Mark tests as slow after 5mins, kill them after 50
slow-timeout = { period = "300s", terminate-after = 10 }
# Mark tests as slow after 5mins, kill them after 20mins
slow-timeout = { period = "300s", terminate-after = 4 }
# Retry failed tests once, marked flaky if test then passes
retries = 1

0 comments on commit 91ee13b

Please sign in to comment.