Summary
The README's test badge is a hardcoded static image that shows 175 passing — but the codebase actually contains 269 #[test] annotations. The badge link is also empty (), rendering it non-clickable.
Category
README
Severity
Low
Location
Details
[]()
Issues:
- Stale count: The codebase has 269
#[test] functions; the badge says 175.
- Empty link: The badge links to
() (empty anchor), so clicking it does nothing.
- Static badge is fragile: Any new test added will make the badge incorrect again.
Suggested Fix
Replace the static badge with a dynamic CI status badge linked to the GitHub Actions workflow:
[](https://github.com/Liohtml/RUSTScrapling/actions/workflows/ci.yml)
This auto-updates on every run and shows actual pass/fail status rather than a hardcoded number.
Effort Estimate
5 min
Automated finding by repo-health-agent v1.0
Summary
The README's test badge is a hardcoded static image that shows
175 passing— but the codebase actually contains 269#[test]annotations. The badge link is also empty(), rendering it non-clickable.Category
README
Severity
Low
Location
README.mdDetails
Issues:
#[test]functions; the badge says 175.()(empty anchor), so clicking it does nothing.Suggested Fix
Replace the static badge with a dynamic CI status badge linked to the GitHub Actions workflow:
This auto-updates on every run and shows actual pass/fail status rather than a hardcoded number.
Effort Estimate
5 min
Automated finding by repo-health-agent v1.0