mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
tests/lsp: disable ols test on darwin (broken)
This commit is contained in:
parent
4c0a067afb
commit
f9eda14f67
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue