tests/{none-ls,efmls-configs}: disable tools requiring php-cs-fixer (marked as broken)

This commit is contained in:
Gaetan Lepage 2025-04-01 11:35:49 +02:00
parent e1e0e6f024
commit 0ff025c210
2 changed files with 16 additions and 5 deletions

View file

@ -23,7 +23,12 @@
];
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
# TODO: re-enable those tests when fixed
"chktex"

View file

@ -105,10 +105,16 @@
sources =
let
disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
# Not available on aarch64-linux
"smlfmt"
];
disabled =
[
#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
# Enable every none-ls source that has an option
lib.mapAttrs (