Skip to content

Commit

Permalink
tests/netman: disable test on darwin (broken)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 4, 2024
1 parent 7474ee7 commit 6e95a2e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/test-sources/plugins/utils/netman.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 6e95a2e

Please sign in to comment.