Skip to content

Commit

Permalink
Move addition and fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nealrichardson authored and kszucs committed Feb 4, 2020
1 parent e165d54 commit df9ef25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion cpp/src/arrow/flight/test_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,8 @@ Status TestClientBasicAuthHandler::GetToken(std::string* token) {
Status GetTestResourceRoot(std::string* out) {
const char* c_root = std::getenv("ARROW_TEST_DATA");
if (!c_root) {
return Status::IOError("Test resources not found, set ARROW_TEST_DATA to <repo root>/testing/data");
return Status::IOError(
"Test resources not found, set ARROW_TEST_DATA to <repo root>/testing/data");
}
*out = std::string(c_root);
return Status::OK();
Expand Down
9 changes: 5 additions & 4 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -637,10 +637,6 @@ test_linux_wheels() {

test_macos_wheels() {
local py_arches="2.7m 3.5m 3.6m 3.7m 3.8"
if [ ! -d "arrow-testing" ]; then
git clone https://github.com/apache/arrow-testing.git
fi
export ARROW_TEST_DATA=$PWD/arrow-testing/data

for py_arch in ${py_arches}; do
local env=_verify_wheel-${py_arch}
Expand Down Expand Up @@ -672,6 +668,11 @@ test_macos_wheels() {
}

test_wheels() {
if [ ! -d "arrow-testing" ]; then
git clone https://github.com/apache/arrow-testing.git
fi
export ARROW_TEST_DATA=$PWD/arrow-testing/data

local download_dir=binaries
mkdir -p ${download_dir}

Expand Down

0 comments on commit df9ef25

Please sign in to comment.