about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hdbscan
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-05-19 23:01:51 +0100
committerRobert Scott <code@humanleg.org.uk>2021-05-19 23:10:04 +0100
commit62415602363ba9d5772b1cc86e7e96599b1a9915 (patch)
tree832e3103123ea44fa315df386f06251f8c810e31 /pkgs/development/python-modules/hdbscan
parentdbfdb51933210910f3ce4bd6e3d75e83bc17458d (diff)
python3Packages.hdbscan: disable flaky tests
Diffstat (limited to 'pkgs/development/python-modules/hdbscan')
-rw-r--r--pkgs/development/python-modules/hdbscan/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hdbscan/default.nix b/pkgs/development/python-modules/hdbscan/default.nix
index 269062a1e71ee..5264ff24890d6 100644
--- a/pkgs/development/python-modules/hdbscan/default.nix
+++ b/pkgs/development/python-modules/hdbscan/default.nix
@@ -35,6 +35,12 @@ buildPythonPackage rec {
     rm __init__.py
   '';
   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; {
     description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";