diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-04-06 09:07:53 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-28 09:43:19 +0200 |
| commit | e5809f9dfef2bb94e9933a59b2fdf002a838b4ca (patch) | |
| tree | 5a5a6b89e435f9efea1218362a550614034280ca /gnu | |
| parent | d618b746ab1c8443d32bcc1fb82c3f843b72cf45 (diff) | |
gnu: r-scrapper: Replace custom phase with SKIPPED-TESTS argument.
* gnu/packages/bioconductor.scm (r-scrapper)[arguments]: Remove phase
'disable-bad-tests; specify #:skipped-tests instead.
Change-Id: I25b29604508732e64a7efb72b9635e7bc8685356
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioconductor.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 46ac979621..20fe9fd489 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -17206,6 +17206,9 @@ multiplication.") (build-system r-build-system) (arguments (list + #:skipped-tests + ;; This attempts to fetch datasets from the Internet. + '("test-analyze.R") #:phases '(modify-phases %standard-phases ;; I really don't like the trend on Bioconductor to repackage @@ -17221,12 +17224,7 @@ multiplication.") (("^RIGRAPH_FLAGS.*") "RIGRAPH_FLAGS=`pkg-config --cflags igraph`\n") (("^RIGRAPH_LIBS=.*") - "RIGRAPH_LIBS=`pkg-config --libs igraph`\n")))) - (add-after 'unpack 'disable-bad-tests - (lambda _ - (with-directory-excursion "tests/testthat/" - ;; This attempts to fetch datasets from the Internet. - (delete-file "test-analyze.R"))))))) + "RIGRAPH_LIBS=`pkg-config --libs igraph`\n"))))))) (inputs (list igraph-for-r-rigraphlib)) (propagated-inputs (list r-assorthead r-beachmat |
