From b7140dbaf08dbce0eb0812d0385ff1c6f6380b5b Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Thu, 3 Nov 2022 07:11:04 +0900 Subject: [PATCH] ARROW-18232: [Release][macOS][wheel] Disable GCS/S3 tests on not available env --- dev/release/verify-release-candidate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 96196bc696a74..3d6b7c4f8504c 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -1082,7 +1082,7 @@ test_macos_wheels() { # install pyarrow's universal2 wheel pip install pyarrow-${VERSION}-cp${pyver/.}-cp${pyver/.}-macosx_11_0_universal2.whl # check the imports and execute the unittests - INSTALL_PYARROW=OFF ARROW_FLIGHT=${check_flight} \ + INSTALL_PYARROW=OFF ARROW_FLIGHT=${check_flight} ARROW_GCS=${check_gcs} ARROW_S3=${check_s3} \ arch -${arch} ${ARROW_DIR}/ci/scripts/python_wheel_unix_test.sh ${ARROW_SOURCE_DIR} done done