-
Notifications
You must be signed in to change notification settings - Fork 30
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
hashlib.md5 doesn't work when FIPS is enabled #414
Comments
Note that Some kind of conditional will be needed to support older versions of Python. pytest-randomly/.github/workflows/main.yml Lines 16 to 21 in fbb03b7
|
Thanks for the report. This has been fixed in #415 and released in version 3.10.3. Enjoy. |
awesome! thanks. |
22 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Python Version
3.9.9
pytest Version
6.2.5
Package Version
3.10.2
Description
On a system where FIPS is enabled, pytest-randomly fails on line 275
with the following error
This appears to be common among tools that use
hashlib
. The following workaround seems to fix the problem, editpytest_randomly/__init__.py
line 275 to be:I found this idea for a fix here: s3tools/s3cmd#1005 (comment). This issue was related to another package using
hashlib.md5
The text was updated successfully, but these errors were encountered: