From 76c12424f12eff7d342a1339a25160888d740157 Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Mon, 8 Nov 2021 16:56:36 +0100 Subject: [PATCH] ARROW-14628: [Release][Python] Use python -m pytest Ensure runs on AlmaLinux Closes #11639 from bkmgit/ARROW-14628 Authored-by: Benson Muite Signed-off-by: Antoine Pitrou --- 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 fda53a8da528f..ec703abfc0320 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