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

commit b513d671e404431ab5f9eefbdedc3f57e6b16b04
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Mar 12 13:00:24 2026 +0100

    gnu: r-forestplot: Replace custom phase with SKIPPED-TESTS argument.
    
    * gnu/packages/cran.scm (r-forestplot)[arguments]: Remove phase
    'delete-bad-tests; supply TEST-DIRECTORY and SKIPPED-TESTS arguments 
instead.
    
    Change-Id: I785bd439887f016c4863b89c947292e357f65c75
---
 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 0fdf3caee4..91213e148a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -47023,12 +47023,10 @@ space models and automatic ARIMA modelling.")
     (build-system r-build-system)
     (arguments
      (list
-      #:phases
-      '(modify-phases %standard-phases
-         (add-after 'unpack 'delete-bad-tests
-           (lambda _
-             ;; This depends on r-greg, which depends on this package.
-             (delete-file "tests/test_visual_with_Greg.R"))))))
+      #:test-directory "tests"
+      #:skipped-tests
+      ;; This depends on r-greg, which depends on this package.
+      '("test_visual_with_Greg.R")))
     (propagated-inputs
      (list r-abind r-checkmate))
     (native-inputs (list r-dplyr

Reply via email to