guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit 3d19d984745f58b12d7a26e550630928ee0c4c59
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 77a8682b54..ae33e95b02 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -30944,14 +30944,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

Reply via email to