python311Packages.zeep: disable failing tests

This commit is contained in:
Martin Weinelt 2023-12-11 16:46:38 +01:00
parent a245b3da25
commit 4cc0c389e0
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -76,6 +76,15 @@ buildPythonPackage rec {
]
++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
disabledTests = [
# Failed: External connections not allowed during tests.
"test_has_expired"
"test_has_not_expired"
"test_memory_cache_timeout"
"test_bytes_like_password_digest"
"test_password_digest"
];
preCheck = ''
export HOME=$TMPDIR
'';