alamb opened a new pull request, #7747:
URL: https://github.com/apache/arrow-rs/pull/7747

   # Which issue does this PR close?
   
   We generally require a GitHub issue to be filed for all bug fixes and 
enhancements and this helps us generate change logs for our releases. You can 
link an issue to this PR using the GitHub syntax.
   
   - closes https://github.com/apache/arrow-rs/issues/7746
   
   # Rationale for this change
   
   The parquet-variant tests fail when run as part of 
`verify-release-candidate.sh` due to the `parquet-testing` directory being 
checked out in a different location
   
   # What changes are included in this PR?
   
   Update the test to look at the `PARQUET_TEST_DATA` as well
   
   # How are these changes tested?
   
   I tested this manually:
   ```shell
   # note this is a different name than the submodule:
   git clone https://github.com/apache/parquet-testing.git parquet-testing-data
   export PARQUET_TEST_DATA=$PWD/parquet-testing-data/data
   # checkout my fork
   git clone https://github.com/alamb/arrow-rs.git
   cd arrow-rs
   # This fails on main
   git checkout main
   cargo test -p parquet-variant
   # PASSES on branch with fix
   git checkout alamb/fix_variant_tests
   cargo test -p parquet-variant
   ```
   
   # Are there any user-facing changes?
   No this is a test only change


-- 
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]

Reply via email to