Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,15 @@ jobs:
(github.event_name == 'push' && github.ref == 'refs/heads/master')
}}
# E2E tests build and run Actors on the platform. The combination of max-parallel 4 with 16 pytest
# workers and a global concurrency group is a compromise between stability and performance - it keeps
# the platform's resource usage in check while still allowing reasonable test throughput.
concurrency:
group: e2e-tests
cancel-in-progress: false

strategy:
# E2E tests build and run Actors on the platform. Limit parallel workflows to 1 to avoid exceeding
# the platform's memory limits. A single workflow with 16 pytest workers provides good test
# parallelization while staying within platform constraints.
max-parallel: 1
max-parallel: 4
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.14"]
Expand Down
Loading