Skip to content

Commit

Permalink
Merge pull request #145393 from risicle/ris-typer-darwin-fix
Browse files Browse the repository at this point in the history
python3Packages.typer: disable failing tests on darwin
  • Loading branch information
uri-canva authored Nov 16, 2021
2 parents 2808c51 + d2fc99d commit 620033a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/typer/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, click
Expand Down Expand Up @@ -42,6 +43,11 @@ buildPythonPackage rec {
preCheck = ''
export HOME=$(mktemp -d);
'';
disabledTests = lib.optionals stdenv.isDarwin [
# likely related to https://github.com/sarugaku/shellingham/issues/35
"test_show_completion"
"test_install_completion"
];

pythonImportsCheck = [ "typer" ];

Expand Down

0 comments on commit 620033a

Please sign in to comment.