Skip to content

Commit

Permalink
tests/lsp: temporarily disable tests for nixd
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Mar 11, 2024
1 parent 3fe9eb4 commit 544fc5d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions tests/test-sources/example-configurations/issues.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
installCargo = true;
installRustc = true;
};
nixd.enable = true;
# TODO As of 2024-03-10, nixd is broken (see https://github.com/nix-community/nixd/issues/357)
nixd.enable = false;
};
};
};
Expand Down Expand Up @@ -80,7 +81,8 @@
lsp = {
enable = true;
servers = {
nixd.enable = true;
# TODO As of 2024-03-10, nixd is broken (see https://github.com/nix-community/nixd/issues/357)
nixd.enable = false;
rust-analyzer = {
enable = true;
installCargo = true;
Expand Down
3 changes: 2 additions & 1 deletion tests/test-sources/plugins/lsp/_lsp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@
marksman.enable = true;
metals.enable = true;
nil_ls.enable = true;
nixd.enable = true;
# TODO As of 2024-03-10, nixd is broken (see https://github.com/nix-community/nixd/issues/357)
nixd.enable = false;
nushell.enable = true;
ocamllsp.enable = true;
ols.enable =
Expand Down
3 changes: 2 additions & 1 deletion tests/test-sources/plugins/lsp/nixd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
enable = true;

servers.nixd = {
enable = true;
# TODO As of 2024-03-10, nixd is broken (see https://github.com/nix-community/nixd/issues/357)
enable = false;

settings = {
eval = {
Expand Down

0 comments on commit 544fc5d

Please sign in to comment.