Unverified Commit 8eecc334 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #288814 from NixOS/smtpdfix-py312

python312Packages.smtpdfix: disable blocking test
parents c1216a44 57be4965
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{ 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";