lol

Merge pull request #173171 from midchildan/fix/httpie

httpie: disable flaky tests

authored by

Robert Scott and committed by
GitHub
f94bfc14 ea69f798

+14
+14
pkgs/development/python-modules/httpie/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , installShellFiles ··· 80 81 81 82 pythonImportsCheck = [ 82 83 "httpie" 84 + ]; 85 + 86 + disabledTestPaths = lib.optionals stdenv.isDarwin [ 87 + # flaky 88 + "tests/test_plugins_cli.py" 89 + ]; 90 + 91 + disabledTests = [ 92 + # flaky 93 + "test_stdin_read_warning" 94 + ] ++ lib.optionals stdenv.isDarwin [ 95 + # flaky 96 + "test_daemon_runner" 83 97 ]; 84 98 85 99 meta = with lib; {