mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 20:16:16 +03:00
Merge pull request #325278 from GaetanLepage/dask-ml
python311Packages.dask-ml: disable failing tests
This commit is contained in:
commit
45d4314524
1 changed files with 14 additions and 3 deletions
|
@ -66,12 +66,23 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
|
# AttributeError: 'csr_matrix' object has no attribute 'A'
|
||||||
|
# Fixed in https://github.com/dask/dask-ml/pull/996
|
||||||
|
"tests/test_svd.py"
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Flaky: `Arrays are not almost equal to 3 decimals` (although values do actually match)
|
||||||
|
"test_whitening"
|
||||||
|
];
|
||||||
|
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Scalable Machine Learn with Dask";
|
description = "Scalable Machine Learn with Dask";
|
||||||
homepage = "https://github.com/dask/dask-ml";
|
homepage = "https://github.com/dask/dask-ml";
|
||||||
license = licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
maintainers = with maintainers; [ GaetanLepage ];
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue