From b4e23c5f82b56b46f4b731cea33c079330db8d96 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Wed, 22 Jan 2025 13:57:13 -0800 Subject: [PATCH] fix(ci): reduce parallelism (#12441) Co-authored-by: Chakravarthy Racharla --- .github/workflows/docker-unified.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-unified.yml b/.github/workflows/docker-unified.yml index 53946ab8b1..5f944c8e28 100644 --- a/.github/workflows/docker-unified.yml +++ b/.github/workflows/docker-unified.yml @@ -1018,8 +1018,8 @@ jobs: # python_batch_count is used to split pytests in the smoke-test (batches of actual test functions) # cypress_batch_count is used to split the collection of cypress test specs into batches. run: | - echo "cypress_batch_count=11" >> "$GITHUB_OUTPUT" - echo "python_batch_count=5" >> "$GITHUB_OUTPUT" + echo "cypress_batch_count=5" >> "$GITHUB_OUTPUT" + echo "python_batch_count=3" >> "$GITHUB_OUTPUT" - id: set-matrix # For m batches for python and n batches for cypress, we need a test matrix of python x m + cypress x n.