tests/image: disable as magick is broken

This commit is contained in:
Gaetan Lepage 2024-01-08 08:11:02 +01:00 committed by Gaétan Lepage
parent c5e912332e
commit 813702c5e2

View file

@ -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 = { empty = {
# At runtime, the plugin tries to get the size of the terminal which doesn't exist in the # At runtime, the plugin tries to get the size of the terminal which doesn't exist in the
# headless environment. # headless environment.
tests.dontRun = true; tests.dontRun = true;
plugins.image.enable = true; plugins.image.enable = enable;
}; };
defaults = { defaults = {
@ -13,7 +17,7 @@
tests.dontRun = true; tests.dontRun = true;
plugins.image = { plugins.image = {
enable = true; inherit enable;
backend = "kitty"; backend = "kitty";
integrations = { integrations = {
@ -57,7 +61,7 @@
tests.dontRun = true; tests.dontRun = true;
plugins.image = { plugins.image = {
enable = true; inherit enable;
backend = "ueberzug"; backend = "ueberzug";
}; };
}; };