From e404de032400c9e9035d0412c786467e91296491 Mon Sep 17 00:00:00 2001 From: Alessandro Bortolin Date: Fri, 15 Nov 2024 19:02:36 +0100 Subject: [PATCH] Retry tests on macOS --- .config/nextest.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index dd15b478..2934e43b 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,10 @@ [profile.default] slow-timeout = { period = "10s", terminate-after = 6 } +[[profile.default.overrides]] +platform = 'cfg(target_os = "macos")' +retries = 3 + [[profile.default.overrides]] filter = 'test(classic) or test(communication)' slow-timeout = { period = "20s", terminate-after = 20 }