mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 17:24:32 +02:00
plugins/lsp/pylsp: disable broken tests
This commit is contained in:
parent
6152cc9504
commit
420b25c735
1 changed files with 7 additions and 0 deletions
|
@ -623,6 +623,13 @@ in {
|
|||
pkgs.python3Packages.python-lsp-server.overridePythonAttrs (
|
||||
old: {
|
||||
propagatedBuildInputs = pylspPlugins ++ old.propagatedBuildInputs;
|
||||
disabledTests =
|
||||
(old.disabledTests or [])
|
||||
++ [
|
||||
# Those tests fail when third-party plugins are loaded
|
||||
"test_notebook_document__did_open"
|
||||
"test_notebook_document__did_change"
|
||||
];
|
||||
}
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue