From 91ee13b78437cb638709991886e9d64679ddb340 Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Tue, 15 Aug 2023 18:44:29 -0400 Subject: [PATCH] Decrease timeout and add retry (#615) --- .config/nextest.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index d79bd47e56..547a2ff46e 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -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