From 026e5fb3408edbf9e47fcf8fd6d9efad459d3ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Sun, 2 Feb 2020 13:15:16 +0100 Subject: [PATCH 1/2] use pip to install dependencies for wheel verification --- dev/release/verify-release-candidate.sh | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 000af83a172..fd98fd26638 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -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 @@ -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 From 3e9694958663d38c6ac26acf4852af2e727d7569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kriszti=C3=A1n=20Sz=C5=B1cs?= Date: Mon, 3 Feb 2020 17:09:54 +0100 Subject: [PATCH 2/2] remove pytest verbose flags --- dev/release/verify-release-candidate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index fd98fd26638..9d68b7ce18b 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -613,7 +613,7 @@ test_linux_wheels() { pip install -r ${ARROW_DIR}/python/requirements-test.txt # execute the tests - pytest -sv --pyargs pyarrow + pytest --pyargs pyarrow done conda deactivate @@ -646,7 +646,7 @@ test_macos_wheels() { pip install -r ${ARROW_DIR}/python/requirements-test.txt # execute the tests - pytest -sv --pyargs pyarrow + pytest --pyargs pyarrow conda deactivate done