Skip to content

Commit 57be496

Browse files
committed
python312Packages.smtpdfix: disable blocking test
1 parent 36ee104 commit 57be496

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pkgs/development/python-modules/smtpdfix/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{ lib
22
, buildPythonPackage
33
, fetchPypi
4+
, pythonAtLeast
45
, setuptools
56
, pytest
67
, portpicker
@@ -36,6 +37,11 @@ buildPythonPackage rec {
3637
pytest-asyncio
3738
];
3839

40+
disabledTests = lib.optionals (pythonAtLeast "3.12") [
41+
# https://github.com/bebleo/smtpdfix/issues/335
42+
"test_missing_certs"
43+
];
44+
3945
meta = with lib; {
4046
description = "An SMTP server for use as a pytest fixture for testing";
4147
homepage = "https://github.com/bebleo/smtpdfix";

0 commit comments

Comments
 (0)