From ba7e691a31fd19e27b02aeae972c7115389209b1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 1 Oct 2025 14:49:53 +0200 Subject: [PATCH] tests/plugins/lean: disable runNvim when LSP is enabed (using deprecated lspconfig API) --- tests/test-sources/plugins/by-name/lean/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/test-sources/plugins/by-name/lean/default.nix b/tests/test-sources/plugins/by-name/lean/default.nix index 6dfd8c63..c04ca015 100644 --- a/tests/test-sources/plugins/by-name/lean/default.nix +++ b/tests/test-sources/plugins/by-name/lean/default.nix @@ -1,5 +1,9 @@ { empty = { + # TODO 2025-10-01 + # Calls `require("lspconfig")` which is deprecated, producing a warning + test.runNvim = false; + plugins.lean.enable = true; }; @@ -21,6 +25,10 @@ }; default = { + # TODO 2025-10-01 + # Calls `require("lspconfig")` which is deprecated, producing a warning + test.runNvim = false; + plugins = { lsp.enable = true;