Fix stale test count badge (183 -> 191) - #39
Merged
Merged
Conversation
Verified by running pytest tests/ -v --cov=src: 191 passed, 0 failed, 0 skipped/xfailed. README badge said 183; issue #21 claimed 63. Neither matched actual test count.
Owner
Author
|
The "Test Suite (Python 3.10)" check is failing on this PR, but it is not caused by this change. The failure is a ruff lint error in This PR only touches No existing fix PR is open for this, so I'm not pulling one in. I'm not fixing it here either, since it's unrelated to this PR's scope. Leaving this PR as is; the other checks (Python 3.11, 3.12, security, build, etc.) are unaffected by this failure. Generated by Claude Code |
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.
This PR fixes a stale test count badge in README.md.
The badge previously showed 183 passed tests. That number was out of date.
I ran the full test suite with
pytest tests/ -v --cov=src. The result was 191 passed, 0 failed, 0 skipped.This PR updates the README badge from 183 to 191 to match the verified result.
This resolves #21, which asked to verify the test suite. The issue title referenced 63 tests, but that number was also stale. The actual verified count is 191.