Merged
Conversation
The SKU field was not being properly returned when using Item.all() due to the field not being explicitly requested in the query. This commit: 1. Adds test_sku_in_all() to tests/integration/test_item.py to verify SKU field retrieval 2. Removes trailing slashes from API URLs in get_single_object method 3. Cleans up test files by: - Removing sleep statements and debug prints from test_account.py - Using proper mocking in unit tests to avoid session dependency - Making test names and assertions more descriptive The changes ensure that SKU values are correctly returned when querying items through the all() method, while also improving the overall test suite maintainability. Testing: - Added new integration test verifying SKU field retrieval - All existing Item and Account tests pass - Unit tests properly mock session dependencies
|
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #379 +/- ##
==========================================
- Coverage 93.53% 93.34% -0.20%
==========================================
Files 104 104
Lines 3991 3994 +3
Branches 108 105 -3
==========================================
- Hits 3733 3728 -5
- Misses 219 221 +2
- Partials 39 45 +6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
Got annoyed with the broken tests so this fixes that as well. If you want me to break that out I can but it is straightforward. (drops 2.x mock external dependency and mocks the auth_client) |
ej2
approved these changes
Apr 15, 2025
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.
Fix SKU Field Retrieval and Account Test Issues (Fixes #373)
Changes
This PR addresses two main issues:
Item.all()queriestest_sku_in_allto verify SKU field retrievalTechnical Details
SKU Field Fix
get_single_objectto remove trailing slashesAccount Test Improvements
Testing
Breaking Changes
None. This is a backward-compatible fix that improves existing functionality.
Related Issues
Additional Notes