diff options
author | Ricardo Wurmus <[email protected]> | 2024-11-17 18:55:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2024-12-03 16:58:09 +0100 |
commit | 03424308d905f0030c47056426cc898e5a8a0e2e (patch) | |
tree | 8ad43661e65191ff9acca99e4e123d83616a108d /gnu/packages/statistics.scm | |
parent | 3163949f29b3e28c186fb4db31076fd15238d89e (diff) |
gnu: r-r6: Disable tests.
* gnu/packages/statistics.scm (r-r6)[arguments]: Disable tests.
[properties]: Tell updater to not add r-testthat.
Change-Id: I783a6f6e044a70c8aef84ed99a140dd78f63e8fa
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 1870955178..5756b6d91c 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1815,7 +1815,13 @@ flexible and easy to set up.") (sha256 (base32 "0j5z0b0myzjyyykk310xsa9n2mcm9bz8yqbq4xgz2yzdq8lvv4ld")))) + (properties + ;; We can't have r-testthat among the inputs here to avoid a dependency + ;; cycle. + '((updater-ignored-native-inputs . ("r-testthat")))) (build-system r-build-system) + ;; Tests require r-testthat, which indirectly depends on this package. + (arguments (list #:tests? #false)) (home-page "https://github.com/wch/R6/") (synopsis "Classes with reference semantics in R") (description |