Skip to content

Commit 1aa8f35

Browse files
authored
GH-15115: [R][CI] pyarrow tests fail on macos 10.13 due to missing pyarrow wheel (#15117)
* Closes: #15115 Authored-by: Jacob Wujciak-Jens <jacob@wujciak.de> Signed-off-by: Jacob Wujciak-Jens <jacob@wujciak.de>
1 parent 91e1a98 commit 1aa8f35

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

r/tests/testthat/test-python.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ test_that("install_pyarrow", {
2424
skip_if_not_installed("reticulate")
2525
# PyArrow doesn't support Python 3.6 or earlier
2626
skip_on_python_older_than("3.7")
27+
# no pyarrow wheels for macos 10.13
28+
skip_if(Sys.info()["sysname"] == "Darwin" && Sys.info()["release"] < 18)
2729

2830
venv <- try(reticulate::virtualenv_create("arrow-test"))
2931
# Bail out if virtualenv isn't available

0 commit comments

Comments
 (0)