File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments