mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 11:44:32 +02:00
tests/image: disable as magick is broken
This commit is contained in:
parent
c5e912332e
commit
813702c5e2
1 changed files with 8 additions and 4 deletions
|
@ -1,10 +1,14 @@
|
|||
{
|
||||
let
|
||||
# As of 2024-01-08, lua5.1-magick is broken
|
||||
# TODO: re-enable this test when fixed
|
||||
enable = false;
|
||||
in {
|
||||
empty = {
|
||||
# At runtime, the plugin tries to get the size of the terminal which doesn't exist in the
|
||||
# headless environment.
|
||||
tests.dontRun = true;
|
||||
|
||||
plugins.image.enable = true;
|
||||
plugins.image.enable = enable;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
|
@ -13,7 +17,7 @@
|
|||
tests.dontRun = true;
|
||||
|
||||
plugins.image = {
|
||||
enable = true;
|
||||
inherit enable;
|
||||
|
||||
backend = "kitty";
|
||||
integrations = {
|
||||
|
@ -57,7 +61,7 @@
|
|||
tests.dontRun = true;
|
||||
|
||||
plugins.image = {
|
||||
enable = true;
|
||||
inherit enable;
|
||||
backend = "ueberzug";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue