File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -86,15 +86,19 @@ jobs:
8686 }}
8787
8888 strategy :
89- max-parallel : 1 # E2E tests build and run Actors on the platform, limit parallelism to avoid exceeding memory limits.
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
9094 matrix :
9195 os : ["ubuntu-latest"]
9296 python-version : ["3.10", "3.14"]
9397
9498 runs-on : ${{ matrix.os }}
9599
96100 env :
97- TESTS_CONCURRENCY : " 16 "
101+ TESTS_CONCURRENCY : " 8 "
98102
99103 steps :
100104 - name : Checkout repository
You can’t perform that action at this time.
0 commit comments