diff --git a/tests/test-sources/plugins/languages/lint.nix b/tests/test-sources/plugins/languages/lint.nix index d43bc578..9d39e3ac 100644 --- a/tests/test-sources/plugins/languages/lint.nix +++ b/tests/test-sources/plugins/languages/lint.nix @@ -15,7 +15,9 @@ ruby = ["ruby"]; janet = ["janet"]; inko = ["inko"]; - clojure = ["clj-kondo"]; + # As of 2024-03-27, pkgs.graalvm-ce (a dependency of pkgs.clj-kondo) is broken on x86_64-darwin + # TODO: re-enable this test when fixed + # clojure = ["clj-kondo"]; dockerfile = ["hadolint"]; terraform = ["tflint"]; }; diff --git a/tests/test-sources/plugins/lsp/efmls-configs.nix b/tests/test-sources/plugins/lsp/efmls-configs.nix index 5080b639..ef006e2e 100644 --- a/tests/test-sources/plugins/lsp/efmls-configs.nix +++ b/tests/test-sources/plugins/lsp/efmls-configs.nix @@ -36,6 +36,9 @@ # As of 2024-01-04, luaformat is broken on x86_64-darwin # TODO: re-enable this test when fixed "lua_format" + # As of 2024-03-27, pkgs.graalvm-ce (a dependency of pkgs.clj-kondo) is broken on x86_64-darwin + # TODO: re-enable this test when fixed + "clj_kondo" ]; unpackaged = diff --git a/tests/test-sources/plugins/none-ls.nix b/tests/test-sources/plugins/none-ls.nix index 75cacdcd..a75d2457 100644 --- a/tests/test-sources/plugins/none-ls.nix +++ b/tests/test-sources/plugins/none-ls.nix @@ -104,6 +104,9 @@ pkgs.lib.optionals (pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64) [ + # As of 2024-03-27, pkgs.graalvm-ce (a dependency of pkgs.clj-kondo) is broken on x86_64-darwin + # TODO: re-enable this test when fixed + "clj_kondo" "rubyfmt" ] )