diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-04-09 16:38:07 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-28 09:43:29 +0200 |
| commit | cf55dcd5a4619eea0895223e53b8d7bde59af9eb (patch) | |
| tree | 81ea15ed3c783fdc15d8a7cc4db3970c3cb863e9 /gnu | |
| parent | dcb5c6797e4b45f94e797fc1f624b1c08b336505 (diff) | |
gnu: r-ggplot2: Conditionally skip one test.
* gnu/packages/cran.scm (r-ggplot2)[arguments]: On 32-bit platforms skip one
test.
Change-Id: Icc6d0d6046a18ed24e91e15294c49fb28b4cc12e
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 9 |
1 files changed, 7 insertions, 2 deletions
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 |
