diff options
| -rw-r--r-- | gnu/packages/cran.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cf66143c37a..651e1e2b862 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -26192,15 +26192,11 @@ JavaScript library) and interact with the igraph package.") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'disable-bad-tests - (lambda _ - ;; This test requires DiagrammeR, which we cannot add to Guix - ;; because of massive amounts of minified JavaScript. - (substitute* "tests/testthat/test-draw.R" - ((".*grViz names with quotes.*" m) - (string-append m "skip('skip');\n")))))))) + #:skipped-tests + ;; This test requires DiagrammeR, which we cannot add to Guix + ;; because of massive amounts of minified JavaScript. + '(("test-draw.R" + "grViz names with quotes")))) (propagated-inputs (list r-r6 r-stringi)) (native-inputs |
