From 891195abd49cd14fa9e8467e4ab6b9519c6b5b5f Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Fri, 12 Jun 2026 11:51:20 +0100 Subject: [PATCH 1/2] Time out slow tests Signed-off-by: Adam Gutglick --- .config/nextest.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 53b4cc20e5d..5c1b6f4df95 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,3 +1,6 @@ +[profile.default] +slow-timeout = { period = "30s", terminate-after = 3 } + [[profile.default.overrides]] -filter = 'test(compress_large_int)' +filter = 'test(compress_large_int | fsst_compress_offsets_overflow_i32)' priority = 100 From 5471807c622ae486ca4abfa88461cb480129ab1e Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Fri, 12 Jun 2026 11:58:33 +0100 Subject: [PATCH 2/2] Update .config/nextest.toml Co-authored-by: Joe Isaacs Signed-off-by: Adam Gutglick --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 5c1b6f4df95..63a141f3773 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,5 +1,5 @@ [profile.default] -slow-timeout = { period = "30s", terminate-after = 3 } +slow-timeout = { period = "30s", terminate-after = 5 } [[profile.default.overrides]] filter = 'test(compress_large_int | fsst_compress_offsets_overflow_i32)'