Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit df9ef25

Browse files
nealrichardsonkszucs
authored andcommitted
Move addition and fix lint
1 parent e165d54 commit df9ef25

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

cpp/src/arrow/flight/test_util.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,8 @@ Status TestClientBasicAuthHandler::GetToken(std::string* token) {
454454
Status 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();

dev/release/verify-release-candidate.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -637,10 +637,6 @@ test_linux_wheels() {
637637

638638
test_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

674670
test_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

0 commit comments

Comments
 (0)