diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-25 22:45:27 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
| commit | 24ad03da5a8ec2e7ae0ac997891db696db5394e6 (patch) | |
| tree | 165465bb9c8f689e3485707d53a60b6d9ce9bc4e /gnu | |
| parent | e78dfd6b7b403ca6eb73cf147fb5cf83f5bc6057 (diff) | |
gnu: python-anndata: Ignore failing test.
* gnu/packages/python-xyz.scm (python-anndata)[arguments]{test-flags}:
Ignore test_read_write_X test.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 20f02b88df6..c7ebb083545 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30503,8 +30503,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) |
