python3Packages.awkward: skip failing test

This commit is contained in:
Martin Weinelt 2022-07-21 15:32:52 +02:00
parent f7c33f8617
commit 61718b8bd3

View file

@ -25,7 +25,12 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true;
checkInputs = [ pytestCheckHook numba ];
dontUseSetuptoolsCheck = true;
disabledTests = [
# incomatible with numpy 1.23
"test_numpyarray"
];
disabledTestPaths = [ "tests-cuda" ];
meta = with lib; {