kszucs commented on a change in pull request #10799:
URL: https://github.com/apache/arrow/pull/10799#discussion_r676789793



##########
File path: ci/scripts/python_wheel_unix_test.sh
##########
@@ -54,16 +67,18 @@ import pyarrow.orc
 import pyarrow.parquet
 import pyarrow.plasma
 "
-
-if [ "${PYARROW_TEST_S3}" == "ON" ]; then
-  python -c "import pyarrow._s3fs"
-fi
-if [ "${PYARROW_TEST_FLIGHT}" == "ON" ]; then
-  python -c "import pyarrow.flight"
+  if [ "${PYARROW_TEST_S3}" == "ON" ]; then
+    python -c "import pyarrow._s3fs"
+  fi
+  if [ "${PYARROW_TEST_FLIGHT}" == "ON" ]; then
+    python -c "import pyarrow.flight"
+  fi
 fi
 
-# Install testing dependencies
-pip install -r ${source_dir}/python/requirements-wheel-test.txt
-
-# Execute unittest
-pytest -r s --pyargs pyarrow
+if [ "${CHECK_UNITTESTS}" == "ON" ]; then
+  # Install testing dependencies
+  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()'

Review comment:
       We should enable the CYTHON tests.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to