Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,13 @@ jobs:

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

# Limit E2E tests to at most 2 concurrently running jobs across all workflow runs in the repository
# to avoid hitting the Apify API rate limits. A concurrency group allows only one running job, so each
# matrix entry gets its own group (one slot per Python version).
concurrency:
group: e2e-tests-${{ matrix.python-version }}
cancel-in-progress: false

env:
TESTS_CONCURRENCY: "16"

Expand Down
Loading