From 9e3e01e254df04d5fbd2e86ae5d4c5d9a31a9141 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 14 Nov 2024 13:40:28 +0100 Subject: [PATCH] python313Packages.python-json-logger: disable failing test --- .../python-json-logger/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/python-json-logger/default.nix b/pkgs/development/python-modules/python-json-logger/default.nix index c56428e33c4a..cd4499e20312 100644 --- a/pkgs/development/python-modules/python-json-logger/default.nix +++ b/pkgs/development/python-modules/python-json-logger/default.nix @@ -18,12 +18,17 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - disabledTests = lib.optionals (pythonAtLeast "3.12") [ - # https://github.com/madzak/python-json-logger/issues/185 - "test_custom_object_serialization" - "test_percentage_format" - "test_rename_reserved_attrs" - ]; + disabledTests = + lib.optionals (pythonAtLeast "3.12") [ + # https://github.com/madzak/python-json-logger/issues/185 + "test_custom_object_serialization" + "test_percentage_format" + "test_rename_reserved_attrs" + ] + ++ lib.optionals (pythonAtLeast "3.13") [ + # https://github.com/madzak/python-json-logger/issues/198 + "test_json_default_encoder_with_timestamp" + ]; meta = with lib; { description = "Json Formatter for the standard python logger";