From 72e9cf0cf40d3767edcaba7852d599fb1f69e7d7 Mon Sep 17 00:00:00 2001 From: zancas Date: Fri, 28 Aug 2026 08:03:16 -0700 Subject: [PATCH] test: grant immediate_migration_chunks_a_fragmented_wallet the heavy timeout The test proves more Orchard spends than fit one split transaction and has always run near nextest's default 600-second ceiling. The suite speedups merged in #2741 reshuffled the schedule so it now overlaps the other long-chain heavies: the last green dev run passed it at 571.8 seconds, and every CI run since 2026-08-26 kills it at 600. Listing it in the existing long-chain heavies override raises its limit to 1200 seconds in both profiles, beside its sibling drain_chunks_a_fragmented_wallet. Co-Authored-By: Claude Fable 5 --- .config/nextest.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index d6fd5c5a0a..1d292aca8c 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -25,6 +25,7 @@ test(mempool_spend_balance_and_note_status_accounting) | test(send_shield_cycle) | test(generate_a_range_of_value_transfers) | test(drain_chunks_a_fragmented_wallet) +| test(immediate_migration_chunks_a_fragmented_wallet) | test(from_t_z_o_tz_to_zo_tzo_to_orchard) ''' slow-timeout = { period = "60s", terminate-after = 20, grace-period = "30s" } @@ -57,6 +58,7 @@ test(mempool_spend_balance_and_note_status_accounting) | test(send_shield_cycle) | test(generate_a_range_of_value_transfers) | test(drain_chunks_a_fragmented_wallet) +| test(immediate_migration_chunks_a_fragmented_wallet) | test(from_t_z_o_tz_to_zo_tzo_to_orchard) ''' slow-timeout = { period = "60s", terminate-after = 20, grace-period = "30s" }