httpie: disable flaky tests
This commit is contained in:
parent
34e4df5566
commit
fb1d1acdf0
1 changed files with 14 additions and 0 deletions
|
@ -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…
Reference in a new issue