Skip to content

Commit 7474ee7

Browse files
committed
tests/openscad: disable test on darwin (broken)
1 parent bd5522d commit 7474ee7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Diff for: tests/test-sources/plugins/languages/openscad.nix

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
{
1+
{pkgs, ...}: let
2+
# As of 2024-01-04, vimPlugins.openscad is broken on darwin
3+
# TODO: re-enable this test when fixed
4+
enable = !pkgs.stdenv.isDarwin;
5+
in {
26
empty = {
3-
plugins.openscad.enable = true;
7+
plugins.openscad.enable = enable;
48
};
59

610
defaults = {
711
plugins.openscad = {
8-
enable = true;
12+
inherit enable;
913

1014
fuzzyFinder = "skim";
1115
cheatsheetWindowBlend = 15;
@@ -18,7 +22,7 @@
1822

1923
keymaps = {
2024
plugins.openscad = {
21-
enable = true;
25+
inherit enable;
2226

2327
keymaps = {
2428
enable = true;

0 commit comments

Comments
 (0)