Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #37 +/- ##
=======================================
Coverage 90.23% 90.23%
=======================================
Files 107 107
Lines 2355 2355
=======================================
Hits 2125 2125
Misses 230 230 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
danielcivit
approved these changes
Nov 26, 2025
danielcivit
approved these changes
Nov 26, 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.
This pull request mainly adds docstrings to pytest fixtures and test functions across multiple test files to improve code documentation and clarity. Additionally, it makes a small configuration change to the
pyproject.tomlfile related to linting rules.Documentation improvements:
test_get_api_token.py,test_capture_reservation_cancel.py,test_get_categories.py,test_get_by_code.py,test_get_gateways.py,test_get_issuers_by_gateway_code.py,test_get_me.py,test_capture.py,test_create.py,test_get_order.py,test_refund.py,test_refund_by_item.py,test_refund_by_shopping_cart.py,test_update.py,test_get_by_gateway_code.py,test_get_payment_methods.py,test_recurring.py, andtest_get_transactions.py. These docstrings clarify the purpose of each fixture for future maintainers. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18]test_afterpay_responsefunction intest_integration_order_response_afterpay_direct.pyto clarify its purpose.Configuration update:
pyproject.tomlfile by removing"D103"from the ignore list, potentially enabling linting for missing docstrings in public modules.