From 8aa53df665c537d157b8a590eafd64a6fd2966a5 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Thu, 26 Jun 2025 10:32:09 -0700 Subject: [PATCH] use a laughably large test timeout (10 min) to unbreak CI --- .config/nextest.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index c063bb861..4577d772e 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,4 +1,4 @@ [profile.default] # Mark tests that take longer than 10s as slow. -# Terminate after 90s as a stop-gap measure to terminate on deadlock. -slow-timeout = { period = "10s", terminate-after = 9 } +# Terminate after 10 minutes as a stop-gap measure to terminate on deadlock. +slow-timeout = { period = "10s", terminate-after = 60 }