From cf55dcd5a4619eea0895223e53b8d7bde59af9eb Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 9 Apr 2026 16:38:07 +0200 Subject: gnu: r-ggplot2: Conditionally skip one test. * gnu/packages/cran.scm (r-ggplot2)[arguments]: On 32-bit platforms skip one test. Change-Id: Icc6d0d6046a18ed24e91e15294c49fb28b4cc12e --- gnu/packages/cran.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 826522d0dd..c07be35d67 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -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 -- cgit v1.3