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

commit 6770c7227a9323bc2046213714b68fb864acf378
Author: Nicolas Graves <ngra...@ngraves.fr>
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 84aea5dae8..128805952d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30492,8 +30492,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