gnu: r-actuar: Conditionally skip some tests on 32-bit platforms.

* gnu/packages/cran.scm (r-actuar)[arguments]: On 32-bit platforms skip some
tests.

Change-Id: Iad305e0819f919ace9ab9fe7d20357981e2a226a
This commit is contained in:
Ricardo Wurmus
2026-04-15 22:46:40 +02:00
parent 0c3391b4ea
commit 2c5b0918d3

View File

@@ -46182,6 +46182,15 @@ API; see the package vignette for details.")
"1n7md7q9nv7s4dr0ybjq7km1m36gz84mlrqhdp27wbw2jxvndh80"))))
(properties `((upstream-name . "actuar")))
(build-system r-build-system)
(arguments
(list
#:test-directory "tests"
#:skipped-tests
(if (target-32bit?)
;; Results are not identical, and I guess that's due to accuracy
;; limitations.
'("dpqr-tests.R")
'())))
(propagated-inputs (list r-expint))
(native-inputs (list r-mass r-statmod))
(home-page "https://gitlab.com/vigou3/actuar")