diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-04-07 07:11:07 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-28 09:43:20 +0200 |
| commit | 039f42cacffabd38eae59dca2fc11f11e92535d2 (patch) | |
| tree | f8d2a3428b3194599804c063603e9c24c10484dc /gnu | |
| parent | 300ad1eae190030d80dcd0fb8672a9d76eccaea9 (diff) | |
gnu: r-regioner: Replace custom phase with SKIPPED-TESTS argument.
* gnu/packages/bioconductor.scm (r-regioner)[arguments]: Remove phase
'delete-bad-tests; specify #:skipped-tests instead.
Change-Id: Ic90c620653ffa6d2ad6eab4ded05e4bbfe62d279
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioconductor.scm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 77b2163d76..743aa05d9b 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -12936,14 +12936,11 @@ described at (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'delete-bad-tests - (lambda _ - ;; These tests require internet access. - (for-each delete-file - '("tests/testthat/test_randomizationFunctions.R" - "tests/testthat/test_toGRanges.R"))))))) + #:skipped-tests + ;; These tests require internet access. + '("test_randomizationFunctions.R" + ("test_toGRanges.R" + " toGRanges works for a data.frame")))) (propagated-inputs (list r-biostrings r-bsgenome |
