-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing bad reference to self.last_coverage_percentages #262
Removing bad reference to self.last_coverage_percentages #262
Conversation
…ssary failure logs
Qodo Merge was enabled for this repository. To continue using it, please link your Git account with your Qodo account here. PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
Qodo Merge was enabled for this repository. To continue using it, please link your Git account with your Qodo account here. PR Code Suggestions ✨Explore these optional code suggestions:
|
* Revert "Fix regression on Jacoco coverage & Corbertura (#264)" This reverts commit f46980f. * Revert "Removing bad reference to self.last_coverage_percentages causing necessary failure logs (#262)" This reverts commit 1b1a9ad. * Revert "Refactored coverage processor in to class hierarchy (#230)" This reverts commit 3496069. * Incrementing version.
User description
This is causing logs that look like that are causing errors when there really aren't any errors.
self.last_coverage_percentages
is never updated, so there is nokey
to be referenced.Before:
After:
PR Type
Bug fix
Description
Removed invalid reference to
self.last_coverage_percentages
.Fixed misleading error logs during test validation.
Improved logging for coverage changes in source and non-source files.
Ensured accurate reporting of test coverage increases.
Changes walkthrough 📝
UnitTestValidator.py
Fix invalid reference and improve coverage logging
cover_agent/UnitTestValidator.py
self.last_coverage_percentages
to fix errors.