summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-01-15 12:49:36 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:29:29 +0100
commit8762fea566d19bc9d1ffdd58595464deaa2ffca8 (patch)
tree3298c542bd791f8a1f63bf5e66f644e86344d481 /gnu
parent8996e7cfc3a206161f8a8ac6909f6863aad55d49 (diff)
gnu: r-qs: Skip another test.
* gnu/packages/cran.scm (r-qs)[arguments]: Remove qattributes_testing.R. Change-Id: Ia2b6cb3c9ed959ff3c42c0bd52cae1615d0bd319 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 7243fe53d2..d31bc8b0e2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -55013,10 +55013,14 @@ package.")
(list
#:phases
'(modify-phases %standard-phases
- ;; XXX: tests/correctness_testing.R aborts when doing a data.frame test.
(add-after 'unpack 'disable-bad-tests
(lambda _
- (delete-file "tests/correctness_testing.R"))))))
+ ;; XXX: tests/correctness_testing.R aborts when doing a
+ ;; data.frame test.
+ (delete-file "tests/correctness_testing.R")
+ ;; XXX: one data frame test fails with:
+ ;; Error: attributes_serialize_identical(z, x1) is not TRUE
+ (delete-file "tests/qattributes_testing.R"))))))
(inputs (list lz4 zlib (list zstd "lib")))
(propagated-inputs
(list r-bh r-rapiserialize r-rcpp r-stringfish))