mirror of
https://codeberg.org/guix/guix.git
synced 2026-04-28 06:34:05 +00:00
gnu: r-ggplot2: Conditionally skip one test.
* gnu/packages/cran.scm (r-ggplot2)[arguments]: On 32-bit platforms skip one test. Change-Id: Icc6d0d6046a18ed24e91e15294c49fb28b4cc12e
This commit is contained in:
@@ -5075,9 +5075,14 @@ samples) are easily visualized.")
|
||||
(arguments
|
||||
(list
|
||||
#:skipped-tests
|
||||
'(("test-plot.R"
|
||||
`(("test-plot.R"
|
||||
;; did not generate expected warning
|
||||
"ggplot\\(\\) throws informative errors"))))
|
||||
"ggplot\\(\\) throws informative errors")
|
||||
,@(if (target-32bit?)
|
||||
;; This test fails because of a lack of accuracy.
|
||||
'(("test-sec-axis.R"
|
||||
"sec axis works with tidy eval"))
|
||||
'()))))
|
||||
(propagated-inputs
|
||||
(list r-cli
|
||||
r-gtable
|
||||
|
||||
Reference in New Issue
Block a user