jorisvandenbossche commented on PR #43539: URL: https://github.com/apache/arrow/pull/43539#issuecomment-2288749416
For the wheel builds, the remaining failures all seem to be some network connectivity issue (failure to download some ubuntu package, "Network is unreachable" for some apt package, when downloading cmake. I am a bit surprised that there are that many of such issues, though). Only [wheel-windows-cp312-amd64](https://github.com/ursacomputing/crossbow/actions/runs/10382963239/job/28746984175) is an actual python test failure, although not directly sure how it is related: ``` ___________________ test_relative_paths[data.parquet-None] ____________________ tempdir = WindowsPath('C:/Users/ContainerAdministrator/AppData/Local/Temp/pytest-of-ContainerAdministrator/pytest-0/test_relative_paths_data_parqu0') filesystem = None, name = 'data.parquet' @pytest.mark.parametrize("filesystem", [ None, fs.LocalFileSystem() ]) @pytest.mark.parametrize("name", ("data.parquet", "\u4f8b.parquet")) def test_relative_paths(tempdir, filesystem, name): # reading and writing from relative paths table = pa.table({"a": [1, 2, 3]}) path = tempdir / name # reading pq.write_table(table, str(path)) with util.change_cwd(tempdir): result = pq.read_table(name, filesystem=filesystem) assert result.equals(table) > path.unlink() Python312\Lib\site-packages\pyarrow\tests\parquet\test_basic.py:281: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = WindowsPath('C:/Users/ContainerAdministrator/AppData/Local/Temp/pytest-of-ContainerAdministrator/pytest-0/test_relative_paths_data_parqu0/data.parquet') missing_ok = False def unlink(self, missing_ok=False): """ Remove this file or link. If the path is a directory, use rmdir() instead. """ try: > os.unlink(self) E PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\Users\\ContainerAdministrator\\AppData\\Local\\Temp\\pytest-of-ContainerAdministrator\\pytest-0\\test_relative_paths_data_parqu0\\data.parquet' ``` There are a bunch of failures in the conda builds, but checking now if that also happens elsewhere (doesn't seem related, some Azure error "The API version 2024-08-04 is not supported by Azurite") -- 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]
