python38Packages.jedi: disable test_init_extension_module on aarch64
This commit is contained in:
parent
53733b032f
commit
c465ea96b9
1 changed files with 4 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue