From de10ee8f56d369cf7876a8f478699ccea880d6d5 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 13 Dec 2023 11:24:15 +0100 Subject: [PATCH] tests/lsp: disable sourcekit and typst-lsp as LS are broken --- tests/test-sources/plugins/lsp/_lsp.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/test-sources/plugins/lsp/_lsp.nix b/tests/test-sources/plugins/lsp/_lsp.nix index ef8d9324..a0405930 100644 --- a/tests/test-sources/plugins/lsp/_lsp.nix +++ b/tests/test-sources/plugins/lsp/_lsp.nix @@ -61,7 +61,9 @@ }; # rootDir typst-lsp = { - enable = true; + # As of 2023-12-13, typst-lsp is broken + # TODO: re-enable this test when fixed + enable = false; rootDir = '' require 'lspconfig.util'.root_pattern('.git', 'main.typ') ''; @@ -127,14 +129,18 @@ installRustc = true; }; solargraph.enable = true; - sourcekit.enable = true; + # As of 2023-12-13, sourcekit-lsp is broken + # TODO: re-enable this test when fixed + sourcekit.enable = false; svelte.enable = true; tailwindcss.enable = true; taplo.enable = true; terraformls.enable = true; texlab.enable = true; tsserver.enable = true; - typst-lsp.enable = true; + # As of 2023-12-13, typst-lsp is broken + # TODO: re-enable this test when fixed + typst-lsp.enable = false; vls.enable = true; vuels.enable = true; yamlls.enable = true;