Merge pull request #173171 from midchildan/fix/httpie

httpie: disable flaky tests
main
Robert Scott 2 years ago committed by GitHub
commit f94bfc1465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      pkgs/development/python-modules/httpie/default.nix

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
@ -82,6 +83,19 @@ buildPythonPackage rec {
"httpie" "httpie"
]; ];
disabledTestPaths = lib.optionals stdenv.isDarwin [
# flaky
"tests/test_plugins_cli.py"
];
disabledTests = [
# flaky
"test_stdin_read_warning"
] ++ lib.optionals stdenv.isDarwin [
# flaky
"test_daemon_runner"
];
meta = with lib; { meta = with lib; {
description = "A command line HTTP client whose goal is to make CLI human-friendly"; description = "A command line HTTP client whose goal is to make CLI human-friendly";
homepage = "https://httpie.org/"; homepage = "https://httpie.org/";

Loading…
Cancel
Save