guix-commits
[Top][All Lists]
Advanced

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

36/40: gnu: python-scikit-learn: Disable one test.


From: guix-commits
Subject: 36/40: gnu: python-scikit-learn: Disable one test.
Date: Tue, 23 Jan 2024 07:43:43 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a6b6d1bd6a25a1a2e4e3e2113b8b1fda33e18ab4
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Jan 23 12:43:03 2024 +0100

    gnu: python-scikit-learn: Disable one test.
    
    This test fails with the upgrade of scipy.
    
    * gnu/packages/machine-learning.scm (python-scikit-learn)[arguments]: 
Disable
    test_singular_matrix test.
    
    Change-Id: I47627403826bb5c52f4d578399c7cabaa3f8838d
---
 gnu/packages/machine-learning.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 77f1282a2b..7c27fda9bd 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1629,8 +1629,11 @@ computing environments.")
      (list
       #:test-flags
       '(list "-m" "not network"
-             ;; This test tries to access the internet.
-             "-k" "not test_load_boston_alternative")
+             "-k" (string-append
+                   ;; This test tries to access the internet.
+                   "not test_load_boston_alternative"
+                   ;; DID NOT RAISE <class 'ValueError'>
+                   " and not test_singular_matrix"))
       #:phases
       '(modify-phases %standard-phases
          (add-before 'build 'configure



reply via email to

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