From 1e86276def6c4aa9007d3970c9c7274f88e42b57 Mon Sep 17 00:00:00 2001 From: Jonathan Keane Date: Wed, 27 Apr 2022 10:50:58 -0500 Subject: [PATCH] Skip on snappy --- r/tests/testthat/test-parquet.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/r/tests/testthat/test-parquet.R b/r/tests/testthat/test-parquet.R index dbafd5d62c7..1737b7100c8 100644 --- a/r/tests/testthat/test-parquet.R +++ b/r/tests/testthat/test-parquet.R @@ -197,6 +197,8 @@ test_that("Maps are preserved when writing/reading from Parquet", { }) test_that("read_parquet() and write_parquet() accept connection objects", { + skip_if_not_available("snappy") + tf <- tempfile() on.exit(unlink(tf))