Merge pull request #288814 from NixOS/smtpdfix-py312

python312Packages.smtpdfix: disable blocking test
This commit is contained in:
Martin Weinelt 2024-02-14 18:04:17 +01:00 committed by GitHub
commit 8eecc33421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, setuptools
, pytest
, portpicker
@ -36,6 +37,11 @@ buildPythonPackage rec {
pytest-asyncio
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# https://github.com/bebleo/smtpdfix/issues/335
"test_missing_certs"
];
meta = with lib; {
description = "An SMTP server for use as a pytest fixture for testing";
homepage = "https://github.com/bebleo/smtpdfix";