From ba545ded79057faf866005acd15c1b03bb6d3bf8 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 7 May 2024 22:38:44 +0200 Subject: [PATCH] tests/pugins/rest: set dontRun for test because the plugin is broken in nixpkgs --- tests/test-sources/plugins/utils/rest.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/test-sources/plugins/utils/rest.nix b/tests/test-sources/plugins/utils/rest.nix index 5f4be5ae..57465aa1 100644 --- a/tests/test-sources/plugins/utils/rest.nix +++ b/tests/test-sources/plugins/utils/rest.nix @@ -1,9 +1,19 @@ { empty = { + # As of 2024-05-07, the lua dependencies of luaPackage.rest-nvim are not correctly propagated to + # the vim plugin. + # TODO: re-enable this test when this issue will have been fixed + tests.dontRun = true; + plugins.rest.enable = true; }; defaults = { + # As of 2024-05-07, the lua dependencies of luaPackage.rest-nvim are not correctly propagated to + # the vim plugin. + # TODO: re-enable this test when this issue will have been fixed + tests.dontRun = true; + plugins.rest = { enable = true;