From 1e28932840f3cc9174b2c95432fb8ade057bf415 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 26 Sep 2024 11:00:38 -0500 Subject: [PATCH] tests/lsp: re-enable ols --- tests/test-sources/plugins/lsp/_lsp.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test-sources/plugins/lsp/_lsp.nix b/tests/test-sources/plugins/lsp/_lsp.nix index e3d38344..381d9dd5 100644 --- a/tests/test-sources/plugins/lsp/_lsp.nix +++ b/tests/test-sources/plugins/lsp/_lsp.nix @@ -168,10 +168,7 @@ ocamllsp.enable = true; 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; + pkgs.stdenv.hostPlatform.system != "aarch64-linux"; omnisharp.enable = true; openscad-lsp.enable = true; perlpls.enable = true;