python3Packages.flask-mail: disable broken tests (#349408)

This commit is contained in:
Florian 2024-10-18 17:35:18 +02:00 committed by GitHub
commit ccc0c21268
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,6 +31,13 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# Broken by fix for CVE-2023-27043.
# Reported upstream in https://github.com/pallets-eco/flask-mail/issues/233
"test_unicode_sender_tuple"
"test_unicode_sender"
];
meta = {
description = "Flask extension providing simple email sending capabilities";
homepage = "https://github.com/pallets-eco/flask-mail";