diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-27 16:49:07 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:54 +0100 |
commit | 62c0eda7f43a1b34b7021dad2ff9cf7e8c2d4987 (patch) | |
tree | 6952e8db3819d8163661656daaba6e24f8a61b14 | |
parent | 1bdde110732cc3a71fc064d3e9270d8677d79bf1 (diff) |
gnu: r-ncdfflow: Delete bad tests.
* gnu/packages/bioconductor.scm (r-ncdfflow)[arguments]: Add phase
'delete-bad-tests.
[properties]: Tell updater not to add r-flowstats.
Change-Id: I3ba5519d907890d606ea1160d4b715ce82392e36
-rw-r--r-- | gnu/packages/bioconductor.scm | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 36ea08443c..4f8d4648af 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -20075,8 +20075,19 @@ change point detection.") (sha256 (base32 "16djrka94dhj041sd52ni9r5283fpnj5h5ljzzjqfik10fc9k5z5")))) - (properties `((upstream-name . "ncdfFlow"))) + (properties + `((upstream-name . "ncdfFlow") + ;; Avoid dependency cycle. + (updater-ignored-native-inputs . ("r-flowstats")))) (build-system r-build-system) + (arguments + (list + #:phases + '(modify-phases %standard-phases + (add-after 'unpack 'delete-bad-tests + (lambda _ + ;; Avoid dependency cycle. + (delete-file "tests/testthat/test_ncdfFlowSet_accessor.R")))))) (propagated-inputs (list r-bh r-biobase |