neovim: Disable image/diagram in tests

This commit is contained in:
Quentin Boyer 2024-09-12 19:04:22 +02:00
parent dd2de99e8c
commit 387c19eb8d

View file

@ -46,7 +46,14 @@
};
checks.launch = inputs.nixvim.lib.${system}.check.mkTestDerivationFromNvim {
nvim = self'.packages.neovimTraxys.extend { test.checkWarnings = false; };
nvim = self'.packages.neovimTraxys.extend (
{ lib, ... }:
{
test.checkWarnings = false;
plugins.image.enable = lib.mkForce false;
plugins.diagram-nvim.enable = lib.mkForce false;
}
);
name = "Neovim configuration";
};
};