You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pytest.fixture(scope='module')
def parquet_test_datadir():
if sys.platform == 'emscripten':
pytest.skip("needs PARQUET_TEST_DATA files access")
result = os.environ.get('PARQUET_TEST_DATA')
if not result:
> raise RuntimeError('Please point the PARQUET_TEST_DATA environment '
'variable to the test data directory')
E RuntimeError: Please point the PARQUET_TEST_DATA environment variable to the test data directory
C:\tmp\arrow-verify-release-wheels\_verify-wheel-3.9\Lib\site-packages\pyarrow\tests\parquet\conftest.py:38: RuntimeError
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> entering PDB >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> PDB post_mortem (IO-capturing turned off) >>>>>>>>>>>>>>>>>>
> c:\tmp\arrow-verify-release-wheels\_verify-wheel-3.9\lib\site-packages\pyarrow\tests\parquet\conftest.py(38)parquet_test_datadir()
-> raise RuntimeError('Please point the PARQUET_TEST_DATA environment '
(Pdb)
Component(s)
Packaging, Python, Release
The text was updated successfully, but these errors were encountered:
…y-release-candidate-wheels.bat (#44462)
### Rationale for this change
The Windows wheel verification fails due to missing `PARQUET_TEST_DATA`
### What changes are included in this PR?
Add `PARQUET_TEST_DATA` to `verify-release-candidate-wheels.bat` which is only tested on the binary verification job.
### Are these changes tested?
Via archery
### Are there any user-facing changes?
No
* GitHub Issue: #44461
Lead-authored-by: Sutou Kouhei <[email protected]>
Co-authored-by: Raúl Cumplido <[email protected]>
Co-authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
Describe the bug, including details regarding any error messages, version, and platform.
The Windows wheel binary verification is currently failing due to missing
PARQUET_TEST_DATA
:Component(s)
Packaging, Python, Release
The text was updated successfully, but these errors were encountered: