kou commented on issue #45714: URL: https://github.com/apache/arrow/issues/45714#issuecomment-2777436232
It seems that reticulate creates `~/.cache/`: https://github.com/ursacomputing/crossbow/actions/runs/14256771156/job/39960758704#step:5:2464 ```text /root/.cache /root/.cache/R /root/.cache/R/reticulate /root/.cache/R/reticulate/uv /root/.cache/R/reticulate/uv/python ... ``` Is it OK that we don't use reticulate for CRAN build? ```diff diff --git a/r/tests/testthat/helper-skip.R b/r/tests/testthat/helper-skip.R index bd29080848..ce2ad34e9f 100644 --- a/r/tests/testthat/helper-skip.R +++ b/r/tests/testthat/helper-skip.R @@ -57,6 +57,7 @@ skip_if_no_pyarrow <- function() { return() } + skip_on_cran() skip_on_linux_devel() skip_on_os("windows") ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
