From c756d168dc6883244358ccf7b09404c29d69ed8c Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Sat, 6 Nov 2021 21:08:13 +0100 Subject: [PATCH] pgcli: disable failing tests --- pkgs/development/tools/database/pgcli/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/database/pgcli/default.nix b/pkgs/development/tools/database/pgcli/default.nix index bb8e983fa715..9fa8685734e8 100644 --- a/pkgs/development/tools/database/pgcli/default.nix +++ b/pkgs/development/tools/database/pgcli/default.nix @@ -46,7 +46,11 @@ buildPythonApplication rec { checkInputs = [ pytestCheckHook mock ]; - disabledTests = lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ]; + disabledTests = [ + # tests that expect output from an older version of cli-helpers + "test_format_output" + "test_format_output_auto_expand" + ] ++ lib.optionals stdenv.isDarwin [ "test_application_name_db_uri" ]; meta = with lib; { description = "Command-line interface for PostgreSQL";