httpie: disable flaky tests

This commit is contained in:
midchildan 2022-05-16 02:21:32 +09:00
parent 34e4df5566
commit fb1d1acdf0
No known key found for this signature in database
GPG Key ID: A64DE57FA5963935

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, installShellFiles
@ -82,6 +83,19 @@ buildPythonPackage rec {
"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; {
description = "A command line HTTP client whose goal is to make CLI human-friendly";
homepage = "https://httpie.org/";