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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,18 @@ jobs:
# Bound browser wedges so they fail in time for `tend-ci-fix` to respond. On the
# step deliberately: a job-level bound concludes `cancelled` — the conclusion
# that hid the 360-minute cap's kills from `tend-ci-fix` in the first place.
#
# `-v` so a wedge names itself. The bound kills pytest rather than failing it, so
# nothing is written on the way out, and the default terminal reaches the log only
# once every 72 tests: run 33069480665 spent its last twenty-three minutes silent
# at 72% and named no test, which is the one fact `tend-ci-fix` needed. Under `-v`
# xdist writes a nodeid when a worker picks the test up and again when it reports,
# so whatever is left unreported is what stopped. It watches nothing and ends
# nothing — the hang guard `pyproject.toml` rules out is a different mechanism,
# and the reason it was removed was that it killed a worker to say less than this.
- name: 🧪 Test suite
timeout-minutes: 45
run: uv run pytest tests --run-nightly
run: uv run pytest tests --run-nightly -v

lint:
runs-on: ubuntu-24.04
Expand Down
Loading