pythonPackages.jedi: disable broken tests in llvm (#331869)

This commit is contained in:
OTABI Tomoya 2024-09-13 15:04:20 +09:00 committed by GitHub
commit a0620779ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,6 +61,14 @@ buildPythonPackage rec {
++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
# AssertionError: assert 'foo' in ['setup']
"test_init_extension_module"
]
++ lib.optionals (stdenv.targetPlatform.useLLVM or false) [
# InvalidPythonEnvironment: The python binary is potentially unsafe.
"test_create_environment_executable"
# AssertionError: assert ['', '.1000000000000001'] == ['', '.1']
"test_dict_keys_completions"
# AssertionError: assert ['', '.1000000000000001'] == ['', '.1']
"test_dict_completion"
];
meta = with lib; {