Skip to content

Commit

Permalink
pythonPackages.mako: disable broken tests in llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
RossComputerGuy committed Aug 2, 2024
1 parent 2d53b6b commit 6266094
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 6266094

Please sign in to comment.