diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-31 21:57:26 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:26 +0200 |
| commit | accbae6d831c517ee23721ea7b6f6814b589c986 (patch) | |
| tree | 376f6790f3fdf0e1b88ed05bc68ee4b189358995 /gnu | |
| parent | 240cf8850a51904efbb83a98b94d47f6d463cb4c (diff) | |
gnu: r-animalcules: Replace custom phase with SKIPPED-TESTS argument.
* gnu/packages/bioconductor.scm (r-animalcules)[arguments]: Remove phase
'skip-bad-tests; specify #:skipped-tests instead.
Change-Id: Ie5f3befab21d5dae3e006aa06116f0d6039d4d9b
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioconductor.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 48c9057ada6..cc8f36e753f 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -4552,15 +4552,9 @@ these biases and construct statistically consistent estimators.") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'skip-bad-tests - (lambda _ - ;; This test needs Internet access. - (with-directory-excursion "tests/testthat" - (substitute* "test-examples.R" - ((".*find_taxonomy\\(\\) is working.*" m) - (string-append m "skip('guix')\n"))))))))) + #:skipped-tests + ;; This test needs Internet access. + '(("test-examples.R" ".*find_taxonomy\\(\\) is working.*")))) (propagated-inputs (list r-ape r-assertthat |
