DO NOT MERGE - Gut tests for CI coverage behaviour testing#1102
Draft
stevelittlefish wants to merge 2 commits into
Draft
DO NOT MERGE - Gut tests for CI coverage behaviour testing#1102stevelittlefish wants to merge 2 commits into
stevelittlefish wants to merge 2 commits into
Conversation
All test method bodies replaced with `pass` so tests still run/discover but exercise no source code. This is intentional to observe CI behaviour under low coverage conditions. Revert with: git checkout master -- tests/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
All test_* method bodies replaced with `pass` (setUp/tearDown preserved so the test lifecycle works). Tests run and pass cleanly but exercise no source code, resulting in near-zero coverage. Revert with: git checkout master -- tests/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1102 +/- ##
===========================================
- Coverage 79.45% 55.98% -23.47%
===========================================
Files 198 198
Lines 20769 20769
===========================================
- Hits 16502 11628 -4874
- Misses 4267 9141 +4874
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
Warning
THIS PR MUST NEVER BE MERGED. It exists solely to observe CI behaviour under near-zero test coverage conditions. Close it when done.
What this does
All test method bodies (94 files) have been replaced with
pass. Tests still run and are discoverable by pytest, but no source code intank/is exercised, resulting in near-zero coverage.Why
CI pipeline investigation — observing how the coverage reporting and any coverage thresholds/gates behave when coverage collapses.
Reverting
🤖 Generated with Claude Code