raulcd commented on PR #47960: URL: https://github.com/apache/arrow/pull/47960#issuecomment-3452508883
I am unsure why this is segfaulting on CI, I am unable to reproduce locally with the same archery docker run setup: ```python + pytest -r s -m hypothesis -W error --pyargs pyarrow /opt/conda/envs/arrow/lib/python3.11/site-packages/pytest_cython/__init__.py:2: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. from pkg_resources import get_distribution /opt/conda/envs/arrow/lib/python3.11/site-packages/pkg_resources/__init__.py:3146: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('sphinxcontrib')`. Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages declare_namespace(pkg) /opt/conda/envs/arrow/lib/python3.11/site-packages/pytest_cython/plugin.py:36: PytestRemovedIn9Warning: The (path: py.path.local) argument is deprecated, please use (file_path: pathlib.Path) see https://docs.pytest.org/en/latest/deprecations.html#py-path-local-arguments-for-hooks-replaced-with-pathlib-path def pytest_collect_file(file_path: pathlib.Path, path, parent: pytest.Collector) -> pytest.Module: ==================================================================================== test session starts ===================================================================================== platform linux -- Python 3.11.14, pytest-8.4.2, pluggy-1.6.0 rootdir: / plugins: hypothesis-6.140.3, cython-0.3.1, anyio-4.11.0 collected 8038 items / 8019 deselected / 3 skipped / 19 selected opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/interchange/test_interchange_spec.py . [ 5%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_array.py s [ 10%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_types.py . [ 15%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_array.py s [ 21%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_types.py . [ 26%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_convert_builtin.py s [ 31%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_feather.py s [ 36%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_pandas.py s. [ 47%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_strategies.py ...sssss [ 89%] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_types.py .. [100%] ================================================================================== short test summary info =================================================================================== SKIPPED [1] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_cuda.py:35: could not import 'pyarrow.cuda': No module named 'pyarrow._cuda' SKIPPED [1] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_cuda_numba_interop.py:26: could not import 'pyarrow.cuda': No module named 'pyarrow._cuda' SKIPPED [1] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_jvm.py:27: could not import 'jpype': No module named 'jpype' SKIPPED [9] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/strategies.py:309: requires timezone not None SKIPPED [1] opt/conda/envs/arrow/lib/python3.11/site-packages/pyarrow/tests/test_pandas.py:1162: Localtime timezone not supported ====================================================================== 9 passed, 13 skipped, 8019 deselected in 39.58s ======================================================================= root@505eae6cb5c1:/# ``` This has been failing for a month now. -- 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]
