diff options
| author | Austin Horstman <khaneliman12@gmail.com> | 2024-11-15 23:32:51 -0600 |
|---|---|---|
| committer | Austin Horstman <khaneliman12@gmail.com> | 2024-11-16 16:46:04 -0600 |
| commit | 198cd91956ddeb214c51ca67d025302f5c9273a7 (patch) | |
| tree | e8745c435ead2dad6ae0b0301ca1bf7ecdcbeb44 | |
| parent | rust-analyzer-unwrapped: format (diff) | |
| download | nixpkgs-198cd91956ddeb214c51ca67d025302f5c9273a7.tar.gz | |
rust-analyzer-unwrapped: disable broken test
Currently fails to find std lib in neovim environment so hover doesn't
contain type information needed to successfully pass the test.
| -rw-r--r-- | pkgs/development/tools/rust/rust-analyzer/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix index c69d33c27b6c..1dc418ef1be5 100644 --- a/pkgs/development/tools/rust/rust-analyzer/default.nix +++ b/pkgs/development/tools/rust/rust-analyzer/default.nix @@ -69,7 +69,9 @@ rustPlatform.buildRustPackage rec { passthru = { updateScript = nix-update-script { }; # FIXME: Pass overrided `rust-analyzer` once `buildRustPackage` also implements #119942 - tests.neovim-lsp = callPackage ./test-neovim-lsp.nix { }; + # FIXME: test script can't find rust std lib so hover doesn't return expected result + # https://github.com/NixOS/nixpkgs/pull/354304 + # tests.neovim-lsp = callPackage ./test-neovim-lsp.nix { }; }; meta = with lib; { |
