We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_API_DIGESTS
test_patches.py
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
Describe the bug test_patches.py maintains a collection of upstream code that is patched by aiobotocore:
aiobotocore/tests/test_patches.py
Line 142 in d145aea
The patched objects are used as dictionary keys, which results in multiple test cases being swallowed due to hash collisions, e.g.:
Lines 427 to 438 in d145aea
Solution: Either those redundant entries are merged or the dict is replaced, i.e. by a tuple of tuples.
Checklist
pip check
pip freeze
pip freeze results
Environment:
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
ResponseParser
No branches or pull requests
Describe the bug
test_patches.py
maintains a collection of upstream code that is patched by aiobotocore:aiobotocore/tests/test_patches.py
Line 142 in d145aea
The patched objects are used as dictionary keys, which results in multiple test cases being swallowed due to hash collisions, e.g.:
aiobotocore/tests/test_patches.py
Lines 427 to 438 in d145aea
Solution: Either those redundant entries are merged or the dict is replaced, i.e. by a tuple of tuples.
Checklist
pip check
passes without errorspip freeze
resultspip freeze results
Environment:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: