diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-18 17:16:23 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:26 +0100 |
| commit | a496f62ae075f30d000e5371e56d4f3de0123db3 (patch) | |
| tree | 53a16747051fe84f16560e739a88e09256f4f1c4 | |
| parent | aa23a17d10aa3d0fe3f5b00792ffcd80df7a5eb8 (diff) | |
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
| -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 651e1e2b862..e4553878510 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -37463,15 +37463,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 |
