fix(ci): reduce parallelism (#12441)

Co-authored-by: Chakravarthy Racharla <chakru.racharla@acryl.io>
This commit is contained in:
Harshal Sheth 2025-01-22 13:57:13 -08:00 committed by GitHub
parent 282395dc4a
commit b4e23c5f82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1018,8 +1018,8 @@ jobs:
# python_batch_count is used to split pytests in the smoke-test (batches of actual test functions) # 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. # cypress_batch_count is used to split the collection of cypress test specs into batches.
run: | run: |
echo "cypress_batch_count=11" >> "$GITHUB_OUTPUT" echo "cypress_batch_count=5" >> "$GITHUB_OUTPUT"
echo "python_batch_count=5" >> "$GITHUB_OUTPUT" echo "python_batch_count=3" >> "$GITHUB_OUTPUT"
- id: set-matrix - 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. # For m batches for python and n batches for cypress, we need a test matrix of python x m + cypress x n.