Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion r/tests/testthat/test-python.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ test_that("install_pyarrow", {
skip_if_not_installed("reticulate")
# PyArrow doesn't support Python 3.6 or earlier
skip_on_python_older_than("3.7")

# skip on 10.13 because we do not ship binaries for pyarrow for macos 10.13 anymore
on_macos <- tolower(Sys.info()[["sysname"]]) %in% "darwin"
skip_if(on_macos && numeric_version(Sys.info()["release"]) < "18.0.0", "No pyarrow binaries are available for macOS 10.13")

venv <- try(reticulate::virtualenv_create("arrow-test"))
# Bail out if virtualenv isn't available
skip_if(inherits(venv, "try-error"))
Expand Down