forked from mirrors/nixpkgs
python312Packages.smtpdfix: disable blocking test
This commit is contained in:
parent
36ee104022
commit
57be4965f4
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue