python313Packages.inform: fix tests

This commit is contained in:
FliegendeWurst
2025-02-02 12:47:14 +01:00
parent 095aeac5ab
commit ff23b19e01
@@ -9,6 +9,7 @@
num2words,
pytestCheckHook,
pythonOlder,
pythonAtLeast,
}:
buildPythonPackage rec {
@@ -38,7 +39,12 @@ buildPythonPackage rec {
hypothesis
];
disabledTests = [ "test_prostrate" ];
disabledTests =
[ "test_prostrate" ]
++ lib.optionals (pythonAtLeast "3.13") [
# doctest runs one more test than expected
"test_inform"
];
meta = with lib; {
description = "Print and logging utilities";