Skip to content

Commit

Permalink
pythonPackages.jedi: disable broken tests in llvm (#331869)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Sep 13, 2024
2 parents 18274d5 + 6266094 commit a062077
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/python-modules/jedi/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; {
Expand Down

0 comments on commit a062077

Please sign in to comment.