Merge pull request #144922 from DeeUnderscore/pgcli-disable-tests

pgcli: disable failing tests
main
Robert Scott 3 years ago committed by GitHub
commit c95f0d0fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      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";

Loading…
Cancel
Save