File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -609,9 +609,11 @@ test_linux_wheels() {
609609 pip install python-rc/${VERSION} -rc${RC_NUMBER} /pyarrow-${VERSION} -cp${py_arch// [mu.]/ } -cp${py_arch// ./ } -manylinux${ml_spec} _x86_64.whl
610610 check_python_imports py_arch
611611
612- # execute the python unit tests
613- conda install -y --file ${ARROW_DIR} /ci/conda_env_python.yml pandas
614- pytest --pyargs pyarrow
612+ # install test requirements
613+ pip install -r ${ARROW_DIR} /python/requirements-test.txt
614+
615+ # execute the tests
616+ pytest -sv --pyargs pyarrow
615617 done
616618
617619 conda deactivate
@@ -640,9 +642,11 @@ test_macos_wheels() {
640642 pip install python-rc/${VERSION} -rc${RC_NUMBER} /pyarrow-${VERSION} -cp${py_arch// [m.]/ } -cp${py_arch// ./ } -${macos_suffix} .whl
641643 check_python_imports py_arch
642644
643- # execute the python unit tests
644- conda install -y --file ${ARROW_DIR} /ci/conda_env_python.yml pandas
645- pytest --pyargs pyarrow
645+ # install test requirements
646+ pip install -r ${ARROW_DIR} /python/requirements-test.txt
647+
648+ # execute the tests
649+ pytest -sv --pyargs pyarrow
646650
647651 conda deactivate
648652 done
You can’t perform that action at this time.
0 commit comments