1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: r-mosaiccore: Replace custom phase with test arguments.

* gnu/packages/cran.scm (r-mosaiccore)[arguments]: Remove phase
'delete-bad-tests; provide SKIPPED-TESTS argument instead.

Change-Id: Ibbe98827c995a92e9a7aadcc0085422973990ee5
This commit is contained in:
Ricardo Wurmus
2026-03-11 19:58:05 +01:00
parent fffc3c0da0
commit 6e0c466751

View File

@@ -29422,12 +29422,11 @@ subsequence} (LCS) using a dynamic programming algorithm.")
(build-system r-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'delete-bad-tests
(lambda _
;; Two tests fail with accuracy problems.
(delete-file "tests/testthat/test-interval-calculations.R"))))))
#:skipped-tests
;; These two tests fail with accuracy problems.
'(("test-interval-calculations.R"
"CI for sample proportions work."
"CI for sample proportions work with long_names."))))
(propagated-inputs
(list r-dplyr r-mass r-rlang r-tidyr))
(native-inputs (list r-testthat))