From 80b4fcefdd797cb504971c4425d22236892ab4f4 Mon Sep 17 00:00:00 2001 From: mldangelo-oai <269034524+mldangelo-oai@users.noreply.github.com> Date: Mon, 17 Aug 2026 15:08:12 -0700 Subject: [PATCH] ci: allow slower Windows integration tests --- sdk/typescript/scripts/run-windows-ci-tests.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk/typescript/scripts/run-windows-ci-tests.mjs b/sdk/typescript/scripts/run-windows-ci-tests.mjs index 534f9fac4..2f7a7ee4d 100644 --- a/sdk/typescript/scripts/run-windows-ci-tests.mjs +++ b/sdk/typescript/scripts/run-windows-ci-tests.mjs @@ -103,7 +103,9 @@ const results = await Promise.all( ? "" : " --test-name-pattern " + testNamePattern), ); - const args = ["test", "--timeout", "30000"]; + // Native Windows credential and document checks can exceed 30 seconds. + // The workflow still bounds each complete shard to ten minutes. + const args = ["test", "--timeout", "120000"]; if (testNamePattern !== undefined) { args.push("--test-name-pattern", testNamePattern); }