jonkeane commented on a change in pull request #9846:
URL: https://github.com/apache/arrow/pull/9846#discussion_r604105222



##########
File path: r/tests/testthat.R
##########
@@ -19,4 +19,4 @@ library(testthat)
 library(arrow)
 library(tibble)
 
-test_check("arrow")
+test_check("arrow", reporter="location")

Review comment:
       The environment variable check could be something like:
   
   ```
   if (identical(tolower(Sys.getenv("ARROW_R_DEV", FALSE)), "true")) {
     arrow_reporter <- MultiReporter("check", "location")
   } else {
     arrow_reporter <- check_reporter()
   }
   test_check("arrow", reporter = arrow_reporter)
   ```
   




-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to