From 3264dc441fa53b78c1c9845862812ae0fbcb95fb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 25 Aug 2026 15:16:07 +0200 Subject: [PATCH] python3Packages.typer: disabled failing tests --- pkgs/development/python-modules/typer/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix index 7465b92890ea..18af7de6c8ea 100644 --- a/pkgs/development/python-modules/typer/default.nix +++ b/pkgs/development/python-modules/typer/default.nix @@ -61,12 +61,19 @@ buildPythonPackage rec { procps ]; + disabledTestPaths = [ + # Test CLI commands + "tests/test_tutorial/" + ]; + disabledTests = [ "test_scripts" # Likely related to https://github.com/sarugaku/shellingham/issues/35 # fails also on Linux "test_show_completion" "test_install_completion" + # AssertionError + "test_typo_suggestion_disabled" ] ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ "test_install_completion"