-
Notifications
You must be signed in to change notification settings - Fork 108
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
Tests: Improved parametrization #570
Conversation
Reviewer's Guide by SourceryThis PR refactors the test suite to improve organization, maintainability, and test coverage by consolidating version-related tests into parametrized fixtures and adding new test fixtures for version comparison, parsing, and validation. It also enhances tests for session name validation, window renaming, and splitting windows with environment variables. No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #570 +/- ##
==========================================
- Coverage 88.84% 88.82% -0.03%
==========================================
Files 36 36
Lines 4080 4079 -1
Branches 376 385 +9
==========================================
- Hits 3625 3623 -2
+ Misses 310 308 -2
- Partials 145 148 +3 ☔ View full report in Codecov by Sentry. |
91e7f45
to
556bc42
Compare
25436e6
to
135f9ab
Compare
@sourcery-ai review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @tony - I've reviewed your changes - here's some feedback:
Overall Comments:
- The use of NamedTuples for test fixtures is a great way to improve readability and organization.
- Consider adding a helper function to reduce the repetition in the version validation tests.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
b5f3648
to
0c047a5
Compare
Summary
This PR refactors the test suite in
test_common.py
to improve organization, maintainability, and test coverage by consolidating version-related tests into parametrized fixtures.Changes
Test Organization
New Test Fixtures
Added several NamedTuple fixtures to improve test organization:
VersionComparisonFixture
- Tests for version comparison operations (gt, gte, lt, lte)VersionParsingFixture
- Tests for version string parsing and validationVersionValidationFixture
- Tests for version validation logicSessionCheckName
fixtureCoverage Improvements
Code Quality
Testing
All tests pass successfully with improved organization and no loss of coverage.
Summary by Sourcery
Tests:
Summary by Sourcery
Refactor the test suite to use parametrized fixtures for version handling, improving test coverage and maintainability.
Tests: