From 811ac51f94ba819496c7b3b9fe412fc1fee8a86d Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Mon, 29 Jun 2026 00:44:16 +0200 Subject: [PATCH] fix: clone parquet-testing into `parquet` to match submodule path in verify script `verify-release-candidate.sh` clones the parquet-testing repository into a `parquet-testing` directory, but the git submodule path declared in `.gitmodules` is `parquet`, and every parquet-based test reads its data from `parquet/data/...` (e.g. `python/tests/test_io.py`, `test_store.py`, `test_context.py`). The arrow-testing clone one line above already correctly uses the submodule path (`testing`). This is currently latent because the script's `python3 -m pytest` invocation is commented out, so the wrong directory is never exercised. Fixing the path is a prerequisite for enabling the test run during release verification. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01Pj5DVU7MaammM2nfHh1ZRG --- dev/release/verify-release-candidate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 9591e0335..c7f9458ba 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -132,7 +132,7 @@ test_source_distribution() { # Clone testing repositories into the expected location git clone https://github.com/apache/arrow-testing.git testing - git clone https://github.com/apache/parquet-testing.git parquet-testing + git clone https://github.com/apache/parquet-testing.git parquet python3 -m venv .venv if [ -x ".venv/bin/python" ]; then