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

pgcli: disable failing tests
This commit is contained in:
Robert Scott 2021-11-06 22:23:51 +00:00 committed by GitHub
commit c95f0d0fb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";