Skip to content

Commit 994e970

Browse files
committed
revert max-parallel
1 parent 4a0bd80 commit 994e970

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/_tests.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,18 @@ jobs:
8686
}}
8787
8888
strategy:
89-
# E2E tests build and run Actors on the platform. Limit parallel workflows to 2 to allow running both
90-
# the oldest and newest Python versions simultaneously, while not exceeding the platform's limits. Two
91-
# parallel workflows with 8 pytest workers each is a compromise between good test parallelization and
92-
# not being rate-limited by the platform.
93-
max-parallel: 2
89+
# E2E tests build and run Actors on the platform. Limit parallel workflows to 1 to avoid exceeding
90+
# the platform's memory limits. A single workflow with 16 pytest workers provides good test
91+
# parallelization while staying within platform constraints.
92+
max-parallel: 1
9493
matrix:
9594
os: ["ubuntu-latest"]
9695
python-version: ["3.10", "3.14"]
9796

9897
runs-on: ${{ matrix.os }}
9998

10099
env:
101-
TESTS_CONCURRENCY: "8"
100+
TESTS_CONCURRENCY: "16"
102101

103102
steps:
104103
- name: Checkout repository

0 commit comments

Comments
 (0)