Skip to content
Closed
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
12 changes: 8 additions & 4 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -609,8 +609,10 @@ test_linux_wheels() {
pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[mu.]/}-cp${py_arch//./}-manylinux${ml_spec}_x86_64.whl
check_python_imports py_arch

# execute the python unit tests
conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas
# install test requirements
pip install -r ${ARROW_DIR}/python/requirements-test.txt

# execute the tests
pytest --pyargs pyarrow
done

Expand Down Expand Up @@ -640,8 +642,10 @@ test_macos_wheels() {
pip install python-rc/${VERSION}-rc${RC_NUMBER}/pyarrow-${VERSION}-cp${py_arch//[m.]/}-cp${py_arch//./}-${macos_suffix}.whl
check_python_imports py_arch

# execute the python unit tests
conda install -y --file ${ARROW_DIR}/ci/conda_env_python.yml pandas
# install test requirements
pip install -r ${ARROW_DIR}/python/requirements-test.txt

# execute the tests
pytest --pyargs pyarrow

conda deactivate
Expand Down