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

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

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

Change-Id: Ic6e25632ba131543d59b69ee9776d46c385329c1
This commit is contained in:
Ricardo Wurmus
2026-03-11 20:03:04 +01:00
parent 18aa6965f2
commit 300a4609de

View File

@@ -28429,12 +28429,10 @@ splice site positions.")
(build-system r-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'delete-bad-tests
(lambda _
;; These tests require r-lme4, creating a dependency cycle.
(delete-file "inst/tinytest/test_mkReTrms.R"))))))
#:test-directory "inst/tinytest"
#:skipped-tests
;; These tests require r-lme4, creating a dependency cycle.
'("test_mkReTrms.R")))
(propagated-inputs (list r-matrix r-rdpack))
(native-inputs (list r-tinytest))
(home-page "https://github.com/bbolker/reformulas")