This repository was archived by the owner on Oct 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -454,7 +454,8 @@ Status TestClientBasicAuthHandler::GetToken(std::string* token) {
454454Status GetTestResourceRoot (std::string* out) {
455455 const char * c_root = std::getenv (" ARROW_TEST_DATA" );
456456 if (!c_root) {
457- return Status::IOError (" Test resources not found, set ARROW_TEST_DATA to <repo root>/testing/data" );
457+ return Status::IOError (
458+ " Test resources not found, set ARROW_TEST_DATA to <repo root>/testing/data" );
458459 }
459460 *out = std::string (c_root);
460461 return Status::OK ();
Original file line number Diff line number Diff line change @@ -637,10 +637,6 @@ test_linux_wheels() {
637637
638638test_macos_wheels () {
639639 local py_arches=" 2.7m 3.5m 3.6m 3.7m 3.8"
640- if [ ! -d " arrow-testing" ]; then
641- git clone https://github.com/apache/arrow-testing.git
642- fi
643- export ARROW_TEST_DATA=$PWD /arrow-testing/data
644640
645641 for py_arch in ${py_arches} ; do
646642 local env=_verify_wheel-${py_arch}
@@ -672,6 +668,11 @@ test_macos_wheels() {
672668}
673669
674670test_wheels () {
671+ if [ ! -d " arrow-testing" ]; then
672+ git clone https://github.com/apache/arrow-testing.git
673+ fi
674+ export ARROW_TEST_DATA=$PWD /arrow-testing/data
675+
675676 local download_dir=binaries
676677 mkdir -p ${download_dir}
677678
You can’t perform that action at this time.
0 commit comments