From f9eda14f67f13a582cb3a3adb06c055e9f2baa7f Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 4 Jan 2024 22:31:00 +0100 Subject: [PATCH] tests/lsp: disable ols test on darwin (broken) --- tests/test-sources/plugins/lsp/_lsp.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/test-sources/plugins/lsp/_lsp.nix b/tests/test-sources/plugins/lsp/_lsp.nix index 00fa32a0..f19aeb3f 100644 --- a/tests/test-sources/plugins/lsp/_lsp.nix +++ b/tests/test-sources/plugins/lsp/_lsp.nix @@ -115,7 +115,12 @@ metals.enable = true; nil_ls.enable = true; nixd.enable = true; - ols.enable = pkgs.stdenv.hostPlatform.system != "aarch64-linux"; + ols.enable = + # ols is not supported on aarch64-linux + (pkgs.stdenv.hostPlatform.system != "aarch64-linux") + # As of 2024-01-04, ols is broken on darwin + # TODO: re-enable this test when fixed + && !pkgs.stdenv.isDarwin; omnisharp.enable = true; perlpls.enable = true; pest_ls.enable = true;