This is an automated email from the ASF dual-hosted git repository. kou pushed a commit to branch maint-6.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 6e6acd5d6e2b71730f54913202afa23f50e86c85 Author: Benson Muite <[email protected]> AuthorDate: Mon Nov 8 16:56:36 2021 +0100 ARROW-14628: [Release][Python] Use python -m pytest Ensure runs on AlmaLinux Closes #11639 from bkmgit/ARROW-14628 Authored-by: Benson Muite <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]> --- ci/scripts/python_wheel_unix_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/python_wheel_unix_test.sh b/ci/scripts/python_wheel_unix_test.sh index fda53a8..ec703ab 100755 --- a/ci/scripts/python_wheel_unix_test.sh +++ b/ci/scripts/python_wheel_unix_test.sh @@ -80,5 +80,5 @@ if [ "${CHECK_UNITTESTS}" == "ON" ]; then pip install -U -r ${source_dir}/python/requirements-wheel-test.txt # Execute unittest, test dependencies must be installed python -c 'import pyarrow; pyarrow.create_library_symlinks()' - pytest -r s --pyargs pyarrow + python -m pytest -r s --pyargs pyarrow fi
