Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions dev/release/verify-release-candidate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,11 @@ set PYARROW_WITH_DATASET=1
set PYARROW_TEST_CYTHON=OFF
set PYARROW_BUNDLE_ARROW_CPP=ON
python -m build --sdist --wheel . --no-isolation || exit /B 1
pytest pyarrow -v -s --enable-parquet || exit /B 1

@rem Install the built wheel to verify it works
for %%f in (dist\*.whl) do pip install %%f || exit /B 1
popd

set PYARROW_TEST_PARQUET=ON
pytest --pyargs pyarrow -v -s || exit /B 1

call deactivate
Loading