Merge pull request #123736 from risicle/ris-hdbscan-disable-flaky-test
python3Packages.hdbscan: disable flaky test
This commit is contained in:
commit
a9f4acc838
1 changed files with 6 additions and 0 deletions
|
@ -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 a new issue