CI: enable Codecov Test Analytics#9293
Merged
ThomasWaldmann merged 1 commit intoborgbackup:masterfrom Feb 10, 2026
Merged
Conversation
db7ca37 to
8fa6482
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #9293 +/- ##
==========================================
- Coverage 75.89% 75.88% -0.02%
==========================================
Files 86 86
Lines 14761 14761
Branches 2198 2198
==========================================
- Hits 11203 11201 -2
- Misses 2884 2886 +2
Partials 674 674 ☔ View full report in Codecov by Sentry. |
521f3bc to
8c7c999
Compare
Enable JUnit XML generation for `native_tests` and `windows_tests` to allow Codecov to process test analytics. Upload the generated `test-results.xml` using `codecov/codecov-action`. The upload step uses `if: !cancelled()` to ensure results are uploaded even if tests fail (to analyze failures), but skipped if the workflow is explicitly cancelled. Originally brought up in PR borgbackup#8752 by @katia-sentry, but missed the !cancelled() check. Also: upgrade to codecov-action@v5.
8c7c999 to
7ef2c25
Compare
|
Backport failed for Please cherry-pick the changes locally and resolve any conflicts. git fetch origin 1.4-maint
git worktree add -d .worktree/backport-9293-to-1.4-maint origin/1.4-maint
cd .worktree/backport-9293-to-1.4-maint
git switch --create backport-9293-to-1.4-maint
git cherry-pick -x 7ef2c258bb18dc157db1082e93da188f097c1c0c |
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.
Originally brought up in PR #8752 by @katia-sentry, but missed the !cancelled() check and needed some updates.