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
4 changes: 2 additions & 2 deletions .github/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ uv run pytest -m long_running -v

**CI Behavior**:

* **NEVER run by default**
* **Only run when explicitly enabled** via:
* **Automatically run on every push to `release/v*` branches** (no opt-in needed)
* **Otherwise never run by default** — must be explicitly enabled via:
* PR label `enable:test:very_long_running`, OR
* Commit message contains `enable:test:very_long_running`

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ jobs:
if: |
!cancelled() && (
contains(inputs.commit_message, 'enable:test:very_long_running') ||
contains(github.event.pull_request.labels.*.name, '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'))
)
uses: ./.github/actions/run-tests
with:
Expand Down
Loading