From c26d97c4b92b81073eb5d2f2591a9a41a20118b7 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Mon, 1 Apr 2024 15:56:02 -0500 Subject: [PATCH] Additional test conditioner --- apis/r/tests/testthat/test-SOMADataFrame.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apis/r/tests/testthat/test-SOMADataFrame.R b/apis/r/tests/testthat/test-SOMADataFrame.R index 61b9ebace1..5984b7887d 100644 --- a/apis/r/tests/testthat/test-SOMADataFrame.R +++ b/apis/r/tests/testthat/test-SOMADataFrame.R @@ -783,7 +783,7 @@ test_that("missing levels in enums", { test_that("factor levels can grow without overlap", { - + skip_if(!extended_tests()) uri <- tempfile() schema <- arrow::schema(arrow::field(name = "soma_joinid", type = arrow::int64()), arrow::field(name = "obs_col_like", @@ -822,6 +822,7 @@ test_that("factor levels can grow without overlap", { }) test_that("factor levels cannot extend beyond index limit", { + skip_if(!extended_tests()) for (tp in c("INT8", "UINT8")) { uri <- tempfile() idx_type <- if (tp == "INT8") arrow::int8() else arrow::uint8()