Merge pull request #172260 from WolfangAukang/slicer-fix

python3Packages.slicer: disable failing tests
This commit is contained in:
Thiago Kenji Okada 2022-05-10 11:23:19 +01:00 committed by GitHub
commit 039f1fe1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,12 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook pandas pytorch scipy ];
disabledTests = [
# IndexError: too many indices for array
"test_slicer_sparse"
"test_operations_2d"
];
meta = with lib; {
description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__";
homepage = "https://github.com/interpretml/slicer";