diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-11 20:06:48 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:07 +0200 |
| commit | 1f40f7f9aa6ecc177d67989753f119331b794c3c (patch) | |
| tree | 9245d4eceeef6bb675e011b89e41dff92aeb46f6 /gnu | |
| parent | 4a0e418e4229a81b42abebd8c4a2b9c8f2b845eb (diff) | |
gnu: r-libcoin: Replace custom phase with test arguments.
* gnu/packages/cran.scm (r-libcoin)[arguments]: Remove phase
'delete-bad-tests; provide TEST-DIRECTORY and SKIPPED-TESTS arguments instead.
Change-Id: Ia8b2765472a1883862c70a3887514c1e5c1cd57b
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 57ec067e06f..b9779b9c506 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30982,12 +30982,10 @@ Cohen (1988).") (build-system r-build-system) (arguments (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'delete-bad-tests - (lambda _ - ;; This file requires r-coin, which depends on this package. - (delete-file "tests/regtest_libcoin.R")))))) + #:test-directory "tests" + #:skipped-tests + ;; This file requires r-coin, which depends on this package. + '("regtest_libcoin.R"))) (propagated-inputs (list r-mvtnorm)) (home-page "https://cran.r-project.org/web/packages/libcoin") (synopsis "Linear test statistics for permutation inference") |
