rekado pushed a commit to branch python-team
in repository guix.

commit e54ab150ce9987d76c1c9a03b4154a2b1136dfd0
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Feb 25 22:45:27 2025 +0100

    gnu: python-anndata: Ignore failing test.
    
    * gnu/packages/python-xyz.scm (python-anndata)[arguments]{test-flags}:
    Ignore test_read_write_X test.
---
 gnu/packages/python-xyz.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0ab3bd5839..bacfac6c42 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30162,8 +30162,12 @@ N-dimensional arrays for Python.")
     (arguments
      (list
       #:test-flags
-      ;; This one test seemingly freezes
-      '(list "-k" "not test_read_lazy_h5_cluster")
+      #~(list "-k" #$(string-append
+                      ;; This one test seemingly freezes
+                      "not test_read_lazy_h5_cluster"
+                      ;; Fails with a numpy deprecation warning
+                      ;; but not an actual failure
+                      " and not test_read_write_X"))
       #:phases
       #~(modify-phases %standard-phases
           ;; Doctests require scanpy from (gnu packages bioinformatics)

Reply via email to