Skip to content

Commit 0ff025c

Browse files
committed
tests/{none-ls,efmls-configs}: disable tools requiring php-cs-fixer (marked as broken)
1 parent e1e0e6f commit 0ff025c

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

tests/test-sources/plugins/by-name/efmls-configs/default.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@
2323
];
2424

2525
brokenTools =
26-
lib.optionals hostPlatform.isDarwin [
26+
[
27+
#TODO Added 2025-04-01
28+
# php-cs-fixer is marked as broken
29+
"php_cs_fixer"
30+
]
31+
++ lib.optionals hostPlatform.isDarwin [
2732
# As of 2024-01-04, texliveMedium is broken on darwin
2833
# TODO: re-enable those tests when fixed
2934
"chktex"

tests/test-sources/plugins/by-name/none-ls/default.nix

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,16 @@
105105

106106
sources =
107107
let
108-
disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
109-
# Not available on aarch64-linux
110-
"smlfmt"
111-
];
108+
disabled =
109+
[
110+
#TODO Added 2025-04-01
111+
# php-cs-fixer is marked as broken
112+
"phpcsfixer"
113+
]
114+
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
115+
# Not available on aarch64-linux
116+
"smlfmt"
117+
];
112118
in
113119
# Enable every none-ls source that has an option
114120
lib.mapAttrs (

0 commit comments

Comments
 (0)