guix_mirror_bot pushed a commit to branch master
in repository guix.

commit db463c0eb6f2e7be5d369875a18d96f9b18c351b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 5 23:12:14 2025 +0100

    gnu: python-cwlformat: Fix tests.
    
    * gnu/packages/bioinformatics.scm (python-cwlformat)[arguments]
    <test-flags>: Skip one test.
    [native-inputs]: Remove python-wheel; add python-pytest.
    
    Change-Id: Ic72c23fbe9a456d45e140c47ed06685ca5457b4b
---
 gnu/packages/bioinformatics.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0e80c7eb20..8254060bb3 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7027,7 +7027,14 @@ doublets in single-cell RNA-seq data.")
         (base32
          "0agkz2w86k91rc9m5vx5hsqi5nm6fcmzkng6j99hjapz0r9233ql"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-setuptools python-wheel))
+    (arguments
+     (list
+      #:test-flags
+      ;; Assert fails to compare large files.
+      #~(list "--deselect=tests/test_battery.py::test_formatting_battery")))
+    (native-inputs
+     (list python-pytest
+           python-setuptools))
     (propagated-inputs
      (list python-importlib-resources
            python-ruamel.yaml))

Reply via email to