Copilot commented on code in PR #51247:
URL: https://github.com/apache/arrow/pull/51247#discussion_r3961718555
##########
python/pyarrow/tests/test_compute.py:
##########
@@ -246,6 +247,24 @@ def test_list_functions():
assert "add" in pc.list_functions()
+def test_call_tabular_function_rejects_invalid_registry():
Review Comment:
This test spawns a subprocess, so it should be marked with
`@pytest.mark.processes` to ensure it is skipped in environments where process
creation is disabled (e.g. Emscripten, where `processes` defaults to False).
Without the marker, the test will still run and can fail due to lack of
subprocess support.
--
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]