mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
tests/{none-ls,efmls-configs}: disable tools requiring php-cs-fixer (marked as broken)
This commit is contained in:
parent
e1e0e6f024
commit
0ff025c210
2 changed files with 16 additions and 5 deletions
|
@ -23,7 +23,12 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
brokenTools =
|
brokenTools =
|
||||||
lib.optionals hostPlatform.isDarwin [
|
[
|
||||||
|
#TODO Added 2025-04-01
|
||||||
|
# php-cs-fixer is marked as broken
|
||||||
|
"php_cs_fixer"
|
||||||
|
]
|
||||||
|
++ lib.optionals hostPlatform.isDarwin [
|
||||||
# As of 2024-01-04, texliveMedium is broken on darwin
|
# As of 2024-01-04, texliveMedium is broken on darwin
|
||||||
# TODO: re-enable those tests when fixed
|
# TODO: re-enable those tests when fixed
|
||||||
"chktex"
|
"chktex"
|
||||||
|
|
|
@ -105,10 +105,16 @@
|
||||||
|
|
||||||
sources =
|
sources =
|
||||||
let
|
let
|
||||||
disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
disabled =
|
||||||
# Not available on aarch64-linux
|
[
|
||||||
"smlfmt"
|
#TODO Added 2025-04-01
|
||||||
];
|
# php-cs-fixer is marked as broken
|
||||||
|
"phpcsfixer"
|
||||||
|
]
|
||||||
|
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||||
|
# Not available on aarch64-linux
|
||||||
|
"smlfmt"
|
||||||
|
];
|
||||||
in
|
in
|
||||||
# Enable every none-ls source that has an option
|
# Enable every none-ls source that has an option
|
||||||
lib.mapAttrs (
|
lib.mapAttrs (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue