Merge pull request #145393 from risicle/ris-typer-darwin-fix
python3Packages.typer: disable failing tests on darwin
This commit is contained in:
commit
620033a06b
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, click
|
, click
|
||||||
|
@ -42,6 +43,11 @@ buildPythonPackage rec {
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
export HOME=$(mktemp -d);
|
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" ];
|
pythonImportsCheck = [ "typer" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue