kou commented on PR #3694: URL: https://github.com/apache/arrow-adbc/pull/3694#issuecomment-3545017830
https://github.com/apache/arrow-adbc/actions/runs/19443805171/job/55633450295#step:12:181 ```text ______________________________ test_load_driver _______________________________ def test_load_driver(): # Fails, but in environments where we don't have access to any BigQuery # projects, this checks that we can at least *load* the driver with pytest.raises( adbc_driver_manager.ProgrammingError, match="ProjectID is empty" ): > with adbc_driver_bigquery.connect("") as db: python\adbc_driver_bigquery\tests\test_lowlevel.py:47: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ venv\lib\site-packages\adbc_driver_bigquery\__init__.py:227: in connect return adbc_driver_manager.AdbcDatabase(driver=_driver_path(), **kwargs) adbc_driver_manager/_lib.pyx:605: in adbc_driver_manager._lib.AdbcDatabase.__init__ ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E adbc_driver_manager.ProgrammingError: NOT_FOUND: [Driver Manager] D: LoadLibraryExW() failed: (126) The specified module could not be found. E E D.dll: LoadLibraryExW() failed: (126) The specified module could not be found. E E Also searched these paths for manifests: E not set: ADBC_DRIVER_PATH E additional search path: D:\a\arrow-adbc\arrow-adbc\adbc\venv\etc/adbc/drivers E not enabled at build time: Conda prefix E Registry: HKEY_CURRENT_USER\[Driver Manager] SOFTWARE\ADBC\DRIVERS not found E does not exist: C:\Users\runneradmin\AppData\Local\ADBC/Drivers E Registry: HKEY_LOCAL_MACHINE\[Driver Manager] SOFTWARE\ADBC\DRIVERS not found adbc_driver_manager/_lib.pyx:262: ProgrammingError During handling of the above exception, another exception occurred: def test_load_driver(): # Fails, but in environments where we don't have access to any BigQuery # projects, this checks that we can at least *load* the driver > with pytest.raises( adbc_driver_manager.ProgrammingError, match="ProjectID is empty" ): E AssertionError: Regex pattern did not match. E Expected regex: 'ProjectID is empty' E Actual message: 'NOT_FOUND: [Driver Manager] D: LoadLibraryExW() failed: (126) The specified module could not be found.\r\n\nD.dll: LoadLibraryExW() failed: (126) The specified module could not be found.\r\n\nAlso searched these paths for manifests:\n\tnot set: ADBC_DRIVER_PATH\n\tadditional search path: D:\\a\\arrow-adbc\\arrow-adbc\\adbc\\venv\\etc/adbc/drivers\n\tnot enabled at build time: Conda prefix\n\tRegistry: HKEY_CURRENT_USER\\[Driver Manager] SOFTWARE\\ADBC\\DRIVERS not found\n\tdoes not exist: C:\\Users\\runneradmin\\AppData\\Local\\ADBC/Drivers\n\tRegistry: HKEY_LOCAL_MACHINE\\[Driver Manager] SOFTWARE\\ADBC\\DRIVERS not found' python\adbc_driver_bigquery\tests\test_lowlevel.py:44: AssertionError ``` -- 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]
