about summary refs log tree commit diff
path: root/pkgs/development/tools/squawk
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-12-23 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-12-23 04:20:00 +0000
commit0df1416e1f237e077c5f120e966ed4d892e04037 (patch)
treec328f6e0147659b7d3970dbf621b35221e192918 /pkgs/development/tools/squawk
parentd99923dca9e98de7417105046401f65b424dea50 (diff)
squawk: disable test which depend on the PostgreSQL version
Diffstat (limited to 'pkgs/development/tools/squawk')
-rw-r--r--pkgs/development/tools/squawk/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/squawk/default.nix b/pkgs/development/tools/squawk/default.nix
index 417c66ea3a6f2..da310b84693b1 100644
--- a/pkgs/development/tools/squawk/default.nix
+++ b/pkgs/development/tools/squawk/default.nix
@@ -39,6 +39,11 @@ rustPlatform.buildRustPackage rec {
 
   LIBPG_QUERY_PATH = libpg_query;
 
+  checkFlags = [
+    # depends on the PostgreSQL version
+    "--skip=parse::tests::test_parse_sql_query_json"
+  ];
+
   meta = with lib; {
     description = "Linter for PostgreSQL, focused on migrations";
     homepage = "https://squawkhq.com/";