You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2021/11/10 02:06:53 UTC

[arrow] 08/12: ARROW-14628: [Release][Python] Use python -m pytest

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 <bk...@users.noreply.github.com>
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 <bk...@users.noreply.github.com>
    Signed-off-by: Antoine Pitrou <an...@python.org>
---
 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