mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-09 03:56:05 +01:00
tests: disable tests using luaformatter (build failure)
This commit is contained in:
parent
2a21f0c326
commit
f193d4c1fd
3 changed files with 10 additions and 2 deletions
|
|
@ -22,6 +22,8 @@ rec {
|
||||||
gci = sType.broken;
|
gci = sType.broken;
|
||||||
# 2025-10-08 build failure (haskellPackages.hindent)
|
# 2025-10-08 build failure (haskellPackages.hindent)
|
||||||
hindent = sType.broken;
|
hindent = sType.broken;
|
||||||
|
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||||
|
lua-format = sType.broken;
|
||||||
|
|
||||||
format-queries = null; # Uses neovim itself
|
format-queries = null; # Uses neovim itself
|
||||||
init = null; # Internal thingamajig
|
init = null; # Internal thingamajig
|
||||||
|
|
@ -106,7 +108,6 @@ rec {
|
||||||
js_beautify = nodePackages.js-beautify;
|
js_beautify = nodePackages.js-beautify;
|
||||||
jsonnetfmt = jsonnet;
|
jsonnetfmt = jsonnet;
|
||||||
inherit (texlive.pkgs) latexindent;
|
inherit (texlive.pkgs) latexindent;
|
||||||
lua-format = luaformatter;
|
|
||||||
mago_format = mago;
|
mago_format = mago;
|
||||||
mago_lint = mago;
|
mago_lint = mago;
|
||||||
markdownlint = markdownlint-cli;
|
markdownlint = markdownlint-cli;
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,9 @@ let
|
||||||
|
|
||||||
# 2025-04-01 php-cs-fixer is marked as broken
|
# 2025-04-01 php-cs-fixer is marked as broken
|
||||||
"php-cs-fixer"
|
"php-cs-fixer"
|
||||||
|
|
||||||
|
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||||
|
"luaformatter"
|
||||||
]
|
]
|
||||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||||
# "tabnine"
|
# "tabnine"
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,13 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
brokenTools = [
|
brokenTools = [
|
||||||
|
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||||
|
"lua_format"
|
||||||
|
|
||||||
# TODO Added 2025-04-01
|
# TODO Added 2025-04-01
|
||||||
# php-cs-fixer is marked as broken
|
# php-cs-fixer is marked as broken
|
||||||
"php_cs_fixer"
|
"php_cs_fixer"
|
||||||
|
|
||||||
# TODO: Added 2025-04-19 broken dependency
|
# TODO: Added 2025-04-19 broken dependency
|
||||||
"phan"
|
"phan"
|
||||||
"php"
|
"php"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue