From c38253850790ff59b97fb0890061aee5f880ab96 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 29 Oct 2021 11:41:08 -0700 Subject: [PATCH] python3Packages.jedi: fix tests for darwin --- pkgs/development/python-modules/jedi/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix index 4e4aa0a94f18..814c8acbf91f 100644 --- a/pkgs/development/python-modules/jedi/default.nix +++ b/pkgs/development/python-modules/jedi/default.nix @@ -40,6 +40,9 @@ buildPythonPackage rec { disabledTests = [ # Assertions mismatches with pytest>=6.0 "test_completion" + + # sensitive to platform, causes false negatives on darwin + "test_import" ] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [ # AssertionError: assert 'foo' in ['setup'] "test_init_extension_module"