CI: run the pypy job on pushes and PRs, see #1755 - #10143
Merged
ThomasWaldmann merged 1 commit intoAug 18, 2026
Conversation
The interpreter is a pypy nightly build, but the job itself should run like the other test jobs: on pushes to master and on pull requests, with the same paths filter and concurrency group as ci.yml. No daily schedule. Still continue-on-error, so it reports without blocking. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
ThomasWaldmann
force-pushed
the
ci-pypy-triggers
branch
from
August 18, 2026 02:44
07fc3a0 to
7d81c68
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #10143 +/- ##
==========================================
+ Coverage 86.88% 86.90% +0.01%
==========================================
Files 101 101
Lines 17857 17863 +6
Branches 2709 2708 -1
==========================================
+ Hits 15515 15523 +8
Misses 1636 1636
+ Partials 706 704 -2 ☔ View full report in Codecov by Harness. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #10142: the pypy job used the right interpreter (a pypy 3.11 nightly build),
but the wrong triggers - it only ran on a schedule, so a PR could break borg on pypy
without anyone noticing until the next morning.
It now runs like the other test jobs: on pushes to master and on pull requests, with the same
paths filter and concurrency group as
ci.yml. The daily schedule is gone.Unchanged: the interpreter stays
pypy-3.11-nightly, and the job stayscontinue-on-error,so it reports without blocking. The comments in the workflow got shorter, too.
See #1755.