mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 19:54: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 = {
|
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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue