From 460b47997f534a5c452068b46287bcd5a67d227e Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 17 Aug 2024 01:08:57 +0200 Subject: [PATCH] tests/plugins/lsp: disable typst-lsp test (broken package) --- tests/test-sources/plugins/lsp/_lsp.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test-sources/plugins/lsp/_lsp.nix b/tests/test-sources/plugins/lsp/_lsp.nix index e0c058e3..64a872e3 100644 --- a/tests/test-sources/plugins/lsp/_lsp.nix +++ b/tests/test-sources/plugins/lsp/_lsp.nix @@ -206,7 +206,10 @@ tinymist.enable = true; tsserver.enable = true; typos-lsp.enable = true; - typst-lsp.enable = true; + # As of 2024-08-17, pkgs.typst-lsp is broken + # https://github.com/NixOS/nixpkgs/pull/335263 + # TODO: re-enable this test when fixed + typst-lsp.enable = false; # As of 2024-04-03, pkgs.vala-language-server is broken on linux # TODO: re-enable this test when fixed vala-ls.enable = !pkgs.stdenv.isLinux;