plugins/lsp/pylsp: disable broken tests

This commit is contained in:
Gaetan Lepage 2023-09-18 11:43:11 +02:00 committed by Gaétan Lepage
parent 6152cc9504
commit 420b25c735

View file

@ -623,6 +623,13 @@ in {
pkgs.python3Packages.python-lsp-server.overridePythonAttrs ( pkgs.python3Packages.python-lsp-server.overridePythonAttrs (
old: { old: {
propagatedBuildInputs = pylspPlugins ++ old.propagatedBuildInputs; 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"
];
} }
) )
); );