diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-04-07 10:44:12 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-28 09:43:21 +0200 |
| commit | 46f41339ea2fd80204b412be452b340d3253cbfa (patch) | |
| tree | 1faa01cfd4b9ec6cee534cd4c0fbb54f2aca3434 /gnu | |
| parent | dc4c04a435d5ff300dfaaba950b968a329cb7d3f (diff) | |
gnu: r-beachmat: Replace custom phase with SKIPPED-TESTS argument.
* gnu/packages/bioconductor.scm (r-beachmat)[arguments]: Remove
phase 'delete-bad-tests; specify #:skipped-tests
instead.
Change-Id: I17f4999f3747f4e72015ae64872e2c877a157267
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioconductor.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 9ccd609721..9f9881cbbf 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -25747,13 +25747,11 @@ packages.") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'disable-bad-test - (lambda _ - ;; This test would require r-beachmat-hdf5, but that package - ;; depends on r-beachmat. - (delete-file "tests/testthat/test-initializeCpp-other.R")))))) + #:skipped-tests + '(("test-initializeCpp-other.R" + ;; This test requires r-beachmat-hdf5, but that package depends on + ;; r-beachmat. + "initialization works correctly with the HDF5Arrays")))) (propagated-inputs (list r-assorthead r-biocgenerics |
