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"