From db463c0eb6f2e7be5d369875a18d96f9b18c351b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 5 Oct 2025 23:12:14 +0100 Subject: [PATCH] gnu: python-cwlformat: Fix tests. * gnu/packages/bioinformatics.scm (python-cwlformat)[arguments] : 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 0e80c7eb208b4239f843d8a991767cc3673e43f1..8254060bb3c5b856ef70fb376ebf2a11d1a4b810 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))