python313Packages.python-json-logger: disable failing test
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user