From 55ae7b09e68d579b7d7937066941070609d54c96 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Wed, 4 Mar 2026 12:25:12 -0500 Subject: [PATCH] Increase timeout for `test_random_blocks` (#50724) See https://github.com/zed-industries/zed/actions/runs/22679055818 Release Notes: - N/A --- .config/nextest.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index ab03abd839600e1a84ebd5eea9709f60cea1c7f0..b18a3f31e4a75af0636b4d8d8fdd81f48d8d93e6 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -42,3 +42,7 @@ slow-timeout = { period = "300s", terminate-after = 1 } [[profile.default.overrides]] filter = 'package(editor) and test(test_random_split_editor)' slow-timeout = { period = "300s", terminate-after = 1 } + +[[profile.default.overrides]] +filter = 'package(editor) and test(test_random_blocks)' +slow-timeout = { period = "300s", terminate-after = 1 }