Skip to content

Commit

Permalink
tests/{none-ls,efmls-configs}: disable cbfmt on darwin (broken)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 4, 2024
1 parent 9bc957a commit c54eea2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 8 additions & 4 deletions tests/test-sources/plugins/lsp/efmls-configs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@
# Where tools is the option type representing the valid tools for this language
toolOptions = (builtins.head options.setup.type.getSubModules).options;

brokenTools = [
#Broken as of 16 of November 2023
"phpstan"
];
brokenTools =
[
#Broken as of 16 of November 2023
"phpstan"
]
# As of 2024-01-04, cbfmt is broken on darwin
# TODO: re-enable this test when fixed
++ builtins.optional pkgs.stdenv.isDarwin "cbfmt";

unpackaged =
[
Expand Down
4 changes: 3 additions & 1 deletion tests/test-sources/plugins/none-ls.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@
formatting = {
alejandra.enable = true;
black.enable = true;
cbfmt.enable = true;
# As of 2024-01-04, cbfmt is broken on darwin
# TODO: re-enable this test when fixed
cbfmt.enable = !pkgs.stenv.isDarwin;
eslint.enable = true;
eslint_d.enable = true;
fantomas.enable = pkgs.stdenv.isLinux;
Expand Down

0 comments on commit c54eea2

Please sign in to comment.