From e1417016dfb561ac922d561f4f00d1c9160b23d9 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 17 Nov 2024 13:49:42 +0100 Subject: [PATCH] tests/{lsp-servers,efmls-configs}: disable psalm https://github.com/NixOS/nixpkgs/pull/356704 --- tests/lsp-servers.nix | 7 ++++++- tests/test-sources/plugins/lsp/efmls-configs.nix | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/lsp-servers.nix b/tests/lsp-servers.nix index ba3bca13..0458d74b 100644 --- a/tests/lsp-servers.nix +++ b/tests/lsp-servers.nix @@ -37,7 +37,12 @@ let }: let disabled = - lib.optionals pkgs.stdenv.isDarwin [ + [ + # TODO: added 2024-11-17 + # Fixed in https://github.com/NixOS/nixpkgs/pull/356704 + "psalm" + ] + ++ lib.optionals pkgs.stdenv.isDarwin [ "fsautocomplete" ] ++ lib.optionals pkgs.stdenv.isAarch64 [ diff --git a/tests/test-sources/plugins/lsp/efmls-configs.nix b/tests/test-sources/plugins/lsp/efmls-configs.nix index ed3e49a4..de708400 100644 --- a/tests/test-sources/plugins/lsp/efmls-configs.nix +++ b/tests/test-sources/plugins/lsp/efmls-configs.nix @@ -34,6 +34,9 @@ # TODO: added 2024-11-17 # Fixed in https://github.com/NixOS/nixpkgs/pull/356691 "phpstan" + # TODO: added 2024-11-17 + # Fixed in https://github.com/NixOS/nixpkgs/pull/356704 + "psalm" ] ++ lib.optionals (system == "aarch64-linux") [ # Broken as of 2024-07-13