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

commit 9a445bd2c001be466d07f8b6ad32a607823fc71a
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Feb 18 17:16:23 2026 +0100

    gnu: r-bedr: Replace custom phase with #:skipped-tests.
    
    * gnu/packages/cran.scm (r-bedr)[arguments]: Remove phase
    'skip-bad-tests; provide #:skipped-tests argument.
    
    Change-Id: I5315e8ac3b9766afce682d3b2c479fa1dd318daa
---
 gnu/packages/cran.scm | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 97ba44443c..8757c72870 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -37416,15 +37416,11 @@ whole genome approach to detecting significant QTL in 
linkage maps.")
     (build-system r-build-system)
     (arguments
      (list
-      #:phases
-      '(modify-phases %standard-phases
-         (add-after 'unpack 'skip-bad-tests
-           (lambda _
-             ;; FIXME This test fails with: object 'a.b.overlap.sorted' not
-             ;; found.
-             (substitute* "tests/testthat/test-in.region.R"
-               ((".*check in.region.*" m)
-                (string-append m "skip('skip');\n"))))))))
+      #:skipped-tests
+      ;; FIXME This test fails with: object 'a.b.overlap.sorted' not
+      ;; found.
+      '(("test-in.region.R"
+         "check in.region"))))
     (propagated-inputs
      (list r-data-table
            r-r-utils

Reply via email to