1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-04 00:05:56 +02:00

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
This commit is contained in:
Ricardo Wurmus
2026-03-11 20:43:34 +01:00
parent dd67937e23
commit 4b1eeff1d7
+3 -8
View File
@@ -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))