diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-11 20:43:34 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:07 +0200 |
| commit | 4b1eeff1d7e4abf4ab1f6d6a46f481f225b4a8dd (patch) | |
| tree | 4af5e750d9b6f3cb1254dbb7748fddf45ed1b12c /gnu/packages | |
| parent | dd67937e23269f6c9bebcb5d1590a3a29f935dce (diff) | |
gnu: r-sessioninfo: Replace custom phase with test arguments.
* gnu/packages/cran.scm (r-sessioninfo)[arguments]: Remove phase
'delete-bad-tests; provide SKIPPED-TESTS argument instead.
Change-Id: I1103be5957f08f81ca0a82cfad232c76aa13db18
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/cran.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b6cd83f77e2..efd2252cd4e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -31848,14 +31848,9 @@ Rcpp, RStudio projects, and more.") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'delete-bad-tests - (lambda _ - ;; One test attempts to connect to a website - (delete-file "tests/testthat/test-diff.R") - ;; This one fails for silly reasons. - (delete-file "tests/testthat/test-platform-info.R")))))) + #:skipped-tests + ;; This test fails for silly reasons. + '("test-platform-info.R"))) (propagated-inputs (list r-cli)) (native-inputs (list r-callr r-testthat r-withr)) |
