From b5f5305f69a43c7d0b0c106e3cb9ed2c176edd10 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Feb 2026 20:39:19 +0000 Subject: [PATCH] Migrate nextest config from deprecated [script.*] to [scripts.setup.*] The [script.*] table is deprecated in nextest >=0.9.98. Use the new [scripts.setup.*] table to silence the deprecation warning. https://claude.ai/code/session_015u4K9rBsvfMAzdEsY5ia8i --- .config/nextest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 4d4048b..37e8195 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,6 +1,6 @@ experimental = ["setup-scripts"] -[script.build-test-bins] +[scripts.setup.build-test-bins] command = "bash crates/durable-test/setup.sh" [[profile.default.scripts]]