ci: fix Codecov upload by untracking integrationtests before removal#5511
Merged
marten-seemann merged 1 commit intomasterfrom Dec 29, 2025
Merged
ci: fix Codecov upload by untracking integrationtests before removal#5511marten-seemann merged 1 commit intomasterfrom
marten-seemann merged 1 commit intomasterfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #5511 +/- ##
=========================================
Coverage ? 84.07%
=========================================
Files ? 158
Lines ? 16280
Branches ? 0
=========================================
Hits ? 13686
Misses ? 1962
Partials ? 632 ☔ View full report in Codecov by Sentry. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR modifies the GitHub Actions unit test workflow to fix Codecov upload by untracking the integrationtests directory from Git before removing it from the filesystem.
Key Changes:
- Replaces simple directory removal with a two-step process: first untracking from Git using
git rm -r --cached, then removing the directory withrm -rf - Removes the
shell: bashdirective from the step
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
f912dde to
054bea3
Compare
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.
Fix Codecov upload in CI by untracking and removing
integrationtestsin unit.ymlUpdate the unit workflow to run
git rm -r --cached integrationtestsbeforerm -rf integrationtestsin unit.yml.📍Where to Start
Start with the 'Remove integrationtests' step in unit.yml.
Macroscope summarized 054bea3.