python3Packages.libpass: skip tests broken by bcrypt 5.0.0

This commit is contained in:
Robert Schütz
2025-10-09 13:05:09 -07:00
parent 1bbe4fe35d
commit a8fc9df4d3
@@ -41,6 +41,15 @@ buildPythonPackage rec {
pythonImportsCheck = [ "passlib" ];
disabledTestPaths = [
# https://github.com/notypecheck/passlib/issues/18
"tests/test_handlers_bcrypt.py::bcrypt_bcrypt_test::test_70_hashes"
"tests/test_handlers_bcrypt.py::bcrypt_bcrypt_test::test_77_fuzz_input"
"tests/test_handlers_django.py::django_bcrypt_test::test_77_fuzz_input"
"tests/test_handlers_bcrypt.py::bcrypt_bcrypt_test::test_secret_w_truncate_size"
"tests/test_handlers_django.py::django_bcrypt_test::test_secret_w_truncate_size"
];
disabledTests = [
# timming sensitive
"test_dummy_verify"