From c970653d83946c71d73ebc6843bf8213ec325486 Mon Sep 17 00:00:00 2001 From: Ali Khan Date: Sun, 23 Aug 2026 11:23:30 -0400 Subject: [PATCH] fix(ci): give the 55m unit shards the 60m the startup guard requires The startup guard's row-wise matrix pairing fix exposed three unit shard rows (caching-local, proxy-extras, enterprise-package) still capped at job-timeout-minutes 55, under the 60 the guard's contract needs: up to 35m of setup plus 5m of runner overhead would preempt a 20m pytest budget. Every PR's code-quality check is red on the base until these rows match the 60 the sibling rows already use --- .github/workflows/test-unit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index a7c67f2b35d..2dfca3d308f 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -211,7 +211,7 @@ jobs: workers: 2 reruns: 2 timeout-minutes: 20 - job-timeout-minutes: 55 + job-timeout-minutes: 60 - shard: proxy-extras artifact-name: proxy-extras @@ -219,7 +219,7 @@ jobs: workers: 2 reruns: 2 timeout-minutes: 20 - job-timeout-minutes: 55 + job-timeout-minutes: 60 - shard: enterprise-package artifact-name: enterprise-package @@ -227,7 +227,7 @@ jobs: workers: 4 reruns: 2 timeout-minutes: 20 - job-timeout-minutes: 55 + job-timeout-minutes: 60 - shard: responses-caching-types artifact-name: responses-caching-types