Skip to content

Commit

Permalink
use pip to install dependencies for wheel verification
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Feb 2, 2020
1 parent c00dfe8 commit 026e5fb
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions dev/release/verify-release-candidate.sh
Expand Up @@ -609,9 +609,11 @@ 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
pytest --pyargs pyarrow
# install test requirements
pip install -r ${ARROW_DIR}/python/requirements-test.txt

# execute the tests
pytest -sv --pyargs pyarrow
done

conda deactivate
Expand Down Expand Up @@ -640,9 +642,11 @@ 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
pytest --pyargs pyarrow
# install test requirements
pip install -r ${ARROW_DIR}/python/requirements-test.txt

# execute the tests
pytest -sv --pyargs pyarrow

conda deactivate
done
Expand Down

0 comments on commit 026e5fb

Please sign in to comment.