python3Packages.cffi: Disable failing test on darwin
This commit is contained in:
parent
b60b0a223e
commit
08d449ce6d
1 changed files with 6 additions and 0 deletions
|
@ -82,6 +82,12 @@ if isPyPy then null else buildPythonPackage rec {
|
|||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
# AssertionError: cannot seem to get an int[10] not completely cleared
|
||||
# https://foss.heptapod.net/pypy/cffi/-/issues/556
|
||||
"test_ffi_new_allocator_1"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ domenkozar lnl7 ];
|
||||
homepage = "https://cffi.readthedocs.org/";
|
||||
|
|
Loading…
Reference in a new issue