diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-31 21:48:00 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:26 +0200 |
| commit | 240cf8850a51904efbb83a98b94d47f6d463cb4c (patch) | |
| tree | f4c6a3aa421c1f40a263c10cc71c9f2c8d82616f | |
| parent | 17526fa4edf9409a77aea3cb1c1fb65c5770f3a6 (diff) | |
gnu: r-annotationhubdata: Replace custom phase with SKIPPED-TESTS argument.
* gnu/packages/bioconductor.scm (r-annotationhubdata)[arguments]: Remove phase
'disable-bad-tests; specify #:skipped-tests instead.
Change-Id: I9e2dda16fcf59db72d41048ad5ca9471e3652994
| -rw-r--r-- | gnu/packages/bioconductor.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 442c82f4e76..48c9057ada6 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -4670,14 +4670,13 @@ directly access various slots (e.g. X, obs, var), or convert the data into (build-system r-build-system) (arguments (list + #:test-directory "inst/unitTests" + ;; These tests require internet access. + #:skipped-tests + '("test_recipe.R" + "test_webAccessFunctions.R") #:phases '(modify-phases %standard-phases - (add-after 'unpack 'delete-bad-tests - (lambda _ - ;; These tests require internet access. - (for-each delete-file - '("inst/unitTests/test_recipe.R" - "inst/unitTests/test_webAccessFunctions.R")))) (add-before 'install 'set-home (lambda _ (setenv "HOME" "/tmp")))))) (propagated-inputs |
