From 1ea2b1bab1b45c79a4b798beebbc55f298ae8edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 8 Sep 2025 20:55:58 +0200 Subject: [PATCH] python3Packages.docformatter: disable a broken test https://hydra.nixos.org/build/306497380/nixlog/4/tail --- pkgs/development/python-modules/docformatter/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/docformatter/default.nix b/pkgs/development/python-modules/docformatter/default.nix index 7e87e8aa5dc9..6031ee190f68 100644 --- a/pkgs/development/python-modules/docformatter/default.nix +++ b/pkgs/development/python-modules/docformatter/default.nix @@ -48,10 +48,12 @@ buildPythonPackage rec { pytestCheckHook ]; - # Disable failing tests until https://github.com/PyCQA/docformatter/issues/274 is fixed upstream disabledTests = [ + # Disable failing tests until https://github.com/PyCQA/docformatter/issues/274 is fixed upstream "test_do_format_code.py" "test_docformatter.py" + # some different issue + "test_detect_encoding_with_undetectable_encoding" ]; pythonImportsCheck = [ "docformatter" ];