From f44d117d59117e55c4ddf1837e5eb65eeda2f135 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 11 Feb 2024 12:29:23 +0100 Subject: [PATCH] tests/lsp: disable ols test --- tests/test-sources/plugins/lsp/_lsp.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test-sources/plugins/lsp/_lsp.nix b/tests/test-sources/plugins/lsp/_lsp.nix index a1db62cd..bf6c4c2e 100644 --- a/tests/test-sources/plugins/lsp/_lsp.nix +++ b/tests/test-sources/plugins/lsp/_lsp.nix @@ -130,7 +130,11 @@ (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.isDarwin + # As of 2024-02-11, ols is broken on x86_64-linux + # TODO: re-enable this test when fixed + # See https://github.com/NixOS/nixpkgs/pull/287577 + && (pkgs.stdenv.hostPlatform.system != "x86_64-linux"); omnisharp.enable = true; perlpls.enable = true; pest_ls.enable = true;