From 43fd1a7090f4170bffc24e606505608c7b822d16 Mon Sep 17 00:00:00 2001 From: nac7 <29607512+nac7@users.noreply.github.com> Date: Sun, 23 Aug 2026 18:28:13 -0500 Subject: [PATCH] fix(ci): raise job-timeout-minutes to 60 for 3 shards to fit pytest's own budget caching-local, proxy-extras, and enterprise-package were capped at 55m while their pytest step alone gets 20m and setup can use up to 35m plus 5m runner overhead (55m total) -- leaving no room for pytest inside its own budget. check_workflow_startup_safety.py already catches this; main fixed it, this brings litellm_internal_staging in line. --- .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