From 07ca99d2a8171c0fbdc98248d08a81a8aae613f7 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 29 Apr 2026 11:18:20 +0100 Subject: [PATCH] ci: split auto-reply session shard --- scripts/lib/ci-node-test-plan.mjs | 3 +++ test/scripts/ci-node-test-plan.test.ts | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/scripts/lib/ci-node-test-plan.mjs b/scripts/lib/ci-node-test-plan.mjs index 8d73b2ea0b4..295d6e58f7e 100644 --- a/scripts/lib/ci-node-test-plan.mjs +++ b/scripts/lib/ci-node-test-plan.mjs @@ -40,6 +40,7 @@ function createAutoReplyReplySplitShards() { "auto-reply-reply-agent-runner": [], "auto-reply-reply-commands": [], "auto-reply-reply-dispatch": [], + "auto-reply-reply-session": [], "auto-reply-reply-state-routing": [], }; @@ -62,6 +63,8 @@ function createAutoReplyReplySplitShards() { name.startsWith("get-reply") ) { groups["auto-reply-reply-dispatch"].push(file); + } else if (name.startsWith("session")) { + groups["auto-reply-reply-session"].push(file); } else { groups["auto-reply-reply-state-routing"].push(file); } diff --git a/test/scripts/ci-node-test-plan.test.ts b/test/scripts/ci-node-test-plan.test.ts index c8b0d2336b3..646d262bb07 100644 --- a/test/scripts/ci-node-test-plan.test.ts +++ b/test/scripts/ci-node-test-plan.test.ts @@ -340,6 +340,12 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => { requiresDist: false, shardName: "auto-reply-reply-dispatch", }, + { + checkName: "checks-node-auto-reply-reply-session", + configs: ["test/vitest/vitest.auto-reply-reply.config.ts"], + requiresDist: false, + shardName: "auto-reply-reply-session", + }, { checkName: "checks-node-auto-reply-reply-state-routing", configs: ["test/vitest/vitest.auto-reply-reply.config.ts"],