hiroyuki-sato commented on code in PR #50536:
URL: https://github.com/apache/arrow/pull/50536#discussion_r3607684357
##########
ci/scripts/python_test.sh:
##########
@@ -69,9 +71,9 @@ export PYARROW_TEST_PARQUET_ENCRYPTION
export PYARROW_TEST_S3
# Testing PyArrow
-pytest -r s ${PYTEST_ARGS} --pyargs pyarrow
+pytest -r s "${PYTEST_ARGS}" --pyargs pyarrow
Review Comment:
Thanks! I’ve updated it as follows.
```bash
# Convert the space-separated options into a Bash array.
# This avoids ShellCheck SC2086 and preserves argument boundaries.
read -r -a PYTEST_ARGS_ARRAY <<< "$PYTEST_ARGS"
# Testing PyArrow
pytest -r s "${PYTEST_ARGS_ARRAY[@]}" --pyargs pyarrow
```
--
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]