[
https://issues.apache.org/jira/browse/ARROW-2047?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16342629#comment-16342629
]
ASF GitHub Bot commented on ARROW-2047:
---------------------------------------
moriyoshi opened a new pull request #1525: ARROW-2047: [Python] Use
sys.executable instead of one in the search path.
URL: https://github.com/apache/arrow/pull/1525
* It currently relies on the behavior of `subprocess.check_call()` that
searches for the executable in the search path. Because of it, the test run
needs a valid search path setup.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> test_serialization.py uses a python executable in PATH rather than that used
> for a test run
> -------------------------------------------------------------------------------------------
>
> Key: ARROW-2047
> URL: https://issues.apache.org/jira/browse/ARROW-2047
> Project: Apache Arrow
> Issue Type: Bug
> Components: Python
> Affects Versions: 0.8.0
> Environment: Irrelevant.
> Reporter: Moriyoshi Koizumi
> Priority: Minor
> Labels: pull-request-available
>
>
> Because of it, it needs a valid search path setup everytime the test is run.
> {code:java}
> diff --git a/python/pyarrow/tests/test_serialization.py
> b/python/pyarrow/tests/test_serialization.py
> index e4681e3a..9cad81fc 100644
> — a/python/pyarrow/tests/test_serialization.py
> +++ b/python/pyarrow/tests/test_serialization.py
> @@ -554,7 +554,7 @@ def test_deserialize_buffer_in_different_process():
> dir_path = os.path.dirname(os.path.realpath(_file_))
> python_file = os.path.join(dir_path, 'deserialize_buffer.py')
> subprocess.check_call(['python', python_file, f.name])
> + subprocess.check_call([sys.executable, python_file, f.name])
> def test_set_pickle():
> {code}
> I am going to create a PR accordingly.
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)