diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-18 21:10:01 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:27 +0100 |
| commit | 22b59fbb0eae161ced79707155ea68d16d3b11ce (patch) | |
| tree | 3557399bbe2dc8e33ab3a6a8b37ad5bf5cc965ab | |
| parent | b037d56288598f2023d9b33cfd6baa8efa28426d (diff) | |
gnu: r-latex2exp: Replace custom phase with #:skipped-tests.
* gnu/packages/cran.scm (r-latex2exp)[arguments]: Remove phase
'disable-bad-test; provide #:skipped-tests argument.
Change-Id: I53d97088580d22cccd22ce1337daf759b287caab
| -rw-r--r-- | gnu/packages/cran.scm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 86d9af5f590..8ec9e5239a4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -48731,14 +48731,10 @@ appropriate dog and cat images for many status codes.") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'disable-bad-test - (lambda _ - ;; This test produces warnings. - (substitute* "tests/testthat/test_simple.R" - ((".*Escaped symbols renders correctly.*" m) - (string-append m "skip('skip')\n")))))))) + #:skipped-tests + '(("test_simple.R" + ;; This test produces warnings. + "Escaped symbols renders correctly")))) (native-inputs (list r-knitr r-rlang r-testthat r-waldo)) (home-page "https://github.com/stefano-meschiari/latex2exp/") |
