Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ if any category failed.
| e2e very long running | `test_very_long_running` | (opt-in, see below) |

**Very long running** runs only when enabled: `enable:test:very_long_running`
in commit message or PR label, or any push to a `release/v*` branch.
in commit message or PR label, or any push or manual dispatch
(`workflow_dispatch`) to a `release/v*` branch.

**Parallelism** is set by `XDIST_WORKER_FACTOR` (worker count =
`max(1, int(cpu_count * factor))`). CI runs the `*_matrix` targets — unit and
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
!cancelled() && (
contains(inputs.commit_message, 'enable:test:very_long_running') ||
contains(github.event.pull_request.labels.*.name, 'enable:test:very_long_running') ||
(github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release/v'))
((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && startsWith(github.ref, 'refs/heads/release/v'))
)
uses: ./.github/actions/run-tests
with:
Expand Down
Loading