guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: python-umap-learn: Disable unreliable test.


From: guix-commits
Subject: 02/03: gnu: python-umap-learn: Disable unreliable test.
Date: Mon, 1 Aug 2022 07:22:12 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 9b1a2dcd5be13c89efff8c448c1a861d81d221ed
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Aug 1 12:44:44 2022 +0200

    gnu: python-umap-learn: Disable unreliable test.
    
    * gnu/packages/machine-learning.scm (python-umap-learn)[arguments]: Disable
    test_densmap_trustworthiness_on_iris_supervised.
---
 gnu/packages/machine-learning.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 1f85aa290f..cd0640cd27 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -2758,7 +2758,10 @@ These include a barrier, broadcast, and allreduce.")
             (lambda* (#:key tests? #:allow-other-keys)
               (when tests?
                 (setenv "HOME" "/tmp")
-                (invoke "pytest" "-vv" "umap")))))))
+                (invoke "pytest" "-vv" "umap"
+                        ;; This test can fail because trust may only be
+                        ;; 0.9679405204460967 >= 0.97
+                        "-k" "not 
test_densmap_trustworthiness_on_iris_supervised")))))))
     (native-inputs (list python-pytest))
     (propagated-inputs
      (list python-numba



reply via email to

[Prev in Thread] Current Thread [Next in Thread]