diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 23:12:14 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 23:12:25 +0100 |
| commit | db463c0eb6f2e7be5d369875a18d96f9b18c351b (patch) | |
| tree | be82b5004bed5361267abab1b3fa26441cea6063 /gnu | |
| parent | 7806383af2c610e39a25a1b8bb342903806f806d (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 0e80c7eb208..8254060bb3c 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)) |
