From 420520d5926a0222c9c5bd9fd58a68001579a689 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 27 Oct 2023 17:01:42 +0200 Subject: [PATCH] test: Skip failing test --- tests/testthat/test_tbl__duckdb_connection.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testthat/test_tbl__duckdb_connection.R b/tests/testthat/test_tbl__duckdb_connection.R index 3b3fbea01..eeda63dfe 100644 --- a/tests/testthat/test_tbl__duckdb_connection.R +++ b/tests/testthat/test_tbl__duckdb_connection.R @@ -29,6 +29,8 @@ test_that("Parquet files can be registered with dplyr::tbl()", { test_that("Object cache can be enabled for parquet files with dplyr::tbl()", { skip_if_not_installed("dbplyr") + # https://github.com/tidyverse/dbplyr/issues/1384 + skip_if(packageVersion("dbplyr") >= "2.4.0") con <- DBI::dbConnect(duckdb()) on.exit(DBI::dbDisconnect(con, shutdown = TRUE))