python312Packages.jedi-language-server: disable tests failing on Darwin.
This commit is contained in:
parent
1aaceb5974
commit
12d2f3864d
1 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
, pytestCheckHook
|
||||
, python-lsp-jsonrpc
|
||||
, pythonOlder
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -49,6 +50,12 @@ buildPythonPackage rec {
|
|||
HOME="$(mktemp -d)"
|
||||
'';
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# https://github.com/pappasam/jedi-language-server/issues/313
|
||||
"test_publish_diagnostics_on_change"
|
||||
"test_publish_diagnostics_on_save"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jedi_language_server"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue