3
0
Fork 0
forked from mirrors/nixpkgs

python38Packages.jedi: disable test_init_extension_module on aarch64

This commit is contained in:
Martin Weinelt 2021-10-10 15:08:52 +02:00
parent 53733b032f
commit c465ea96b9

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
@ -39,6 +40,9 @@ buildPythonPackage rec {
disabledTests = [
# Assertions mismatches with pytest>=6.0
"test_completion"
] ++ lib.optionals (stdenv.isAarch64 && pythonOlder "3.9") [
# AssertionError: assert 'foo' in ['setup']
"test_init_extension_module"
];
meta = with lib; {