From 6e95a2e6cb84c565ad1d05c6d90462baf43f0b9d Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 4 Jan 2024 23:00:37 +0100 Subject: [PATCH] tests/netman: disable test on darwin (broken) --- tests/test-sources/plugins/utils/netman.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/test-sources/plugins/utils/netman.nix b/tests/test-sources/plugins/utils/netman.nix index 78a2bf2120..c0acd38bc4 100644 --- a/tests/test-sources/plugins/utils/netman.nix +++ b/tests/test-sources/plugins/utils/netman.nix @@ -1,10 +1,14 @@ -{ +{pkgs, ...}: let + # Fails on darwin with: + # E5113: Error while calling lua chunk: ...ckages/start/netman.nvim/lua/netman/tools/utils/init.lua:52: Unable to open netman utils cache + enable = !pkgs.stdenv.isDarwin; +in { empty = { - plugins.netman.enable = true; + plugins.netman.enable = enable; }; withNeotree = { - plugins.neo-tree.enable = true; + plugins.neo-tree.enable = enable; plugins.netman = { enable = true; neoTreeIntegration = true;