Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-44461: [Release][Packacing][Python] Set PARQUET_TEST_DATA on verify-release-candidate-wheels.bat #44462

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
Draft
4 changes: 3 additions & 1 deletion ci/scripts/download_tz_database.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output ~/Dow

# Extract
mkdir -p ~/Downloads/tzdata
tar --extract --file ~/Downloads/tzdata2021e.tar.gz --directory ~/Downloads/tzdata
ls -lah ~/Downloads/tzdata
tar --extract --file ~/Downloads/tzdata2021e.tar.gz --directory ~/Downloads/tzdata --verbose
grep -r Mexico ~/Downloads/tzdata

# Download Windows timezone mapping
curl https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml --output ~/Downloads/tzdata/windowsZones.xml
3 changes: 2 additions & 1 deletion dev/release/verify-release-candidate-wheels.bat
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ python arrow\dev\release\download_rc_binaries.py %ARROW_VERSION% %RC_NUMBER% ^
call deactivate

set ARROW_TEST_DATA=%cd%\arrow\testing\data

set PARQUET_TEST_DATA=%cd%\arrow\cpp\submodules\parquet-testing\data

CALL :verify_wheel 3.9
if errorlevel 1 GOTO error
Expand Down Expand Up @@ -107,6 +107,7 @@ python -c "import pyarrow.dataset" || EXIT /B 1
pip install -r arrow\python\requirements-test.txt || EXIT /B 1

set PYARROW_TEST_CYTHON=OFF
set TZDIR=%CONDA_ENV_PATH%\share\zoneinfo
pytest %CONDA_ENV_PATH%\Lib\site-packages\pyarrow --pdb -v || EXIT /B 1

:done
Expand Down
1 change: 1 addition & 0 deletions dev/tasks/verify-rc/github.win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
{{ key }}: {{ value }}
{% endfor %}
{% endif %}
timeout-minutes: 60

steps:
{{ macros.github_checkout_arrow(fetch_depth=0)|indent }}
Expand Down
Loading