guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 8e4e8e60a8598b0320788cfd4d0f12197439c6d7
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Feb 18 20:33:22 2026 +0100
gnu: r-glmmtmb: Replace custom phase with #:skipped-tests.
* gnu/packages/cran.scm (r-glmmtmb)[arguments]: Remove phase
'disable-bad-tests; provide #:skipped-tests argument.
Change-Id: I686851d6f9708c8398338bdfd330b2aee5be11b5
---
gnu/packages/cran.scm | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 628bc28b95..2e7122545a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -30967,14 +30967,10 @@ data, fixed and random effects with bootstrapping.")
(build-system r-build-system)
(arguments
(list
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'disable-bad-tests
- (lambda _
- ;; One test fails with accuracy problems.
- (substitute* "tests/testthat/test-predict.R"
- ((".*predvars with different ns\\(\\) in fixed an.*" m)
- (string-append m "skip('skip');\n"))))))))
+ #:skipped-tests
+ ;; One test fails with accuracy problems.
+ '(("test-predict.R"
+ "predvars with different ns\\(\\) in fixed an"))))
(propagated-inputs
(list r-lme4
r-matrix