mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python3Packages.hdbscan: disable flaky tests
This commit is contained in:
parent
dbfdb51933
commit
6241560236
@ -35,6 +35,12 @@ buildPythonPackage rec {
|
|||||||
rm __init__.py
|
rm __init__.py
|
||||||
'';
|
'';
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
disabledTests = [
|
||||||
|
# known flaky tests: https://github.com/scikit-learn-contrib/hdbscan/issues/420
|
||||||
|
"test_mem_vec_diff_clusters"
|
||||||
|
"test_all_points_mem_vec_diff_clusters"
|
||||||
|
"test_approx_predict_diff_clusters"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
|
description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
|
||||||
|
Loading…
Reference in New Issue
Block a user