guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit d7bd08f1544a62f20fdc4a88431d0bc17e48e55a
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Mar 11 20:06:48 2026 +0100
gnu: r-libcoin: Replace custom phase with test arguments.
* gnu/packages/cran.scm (r-libcoin)[arguments]: Remove phase
'delete-bad-tests; provide TEST-DIRECTORY and SKIPPED-TESTS arguments
instead.
Change-Id: Ia8b2765472a1883862c70a3887514c1e5c1cd57b
---
gnu/packages/cran.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 57ec067e06..b9779b9c50 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -30982,12 +30982,10 @@ Cohen (1988).")
(build-system r-build-system)
(arguments
(list
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'delete-bad-tests
- (lambda _
- ;; This file requires r-coin, which depends on this package.
- (delete-file "tests/regtest_libcoin.R"))))))
+ #:test-directory "tests"
+ #:skipped-tests
+ ;; This file requires r-coin, which depends on this package.
+ '("regtest_libcoin.R")))
(propagated-inputs (list r-mvtnorm))
(home-page "https://cran.r-project.org/web/packages/libcoin")
(synopsis "Linear test statistics for permutation inference")