This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 82c2d5f4ca Update the relative path of the test data (#7221)
82c2d5f4ca is described below
commit 82c2d5f4ca58858f750dfc12c414cccd43cc36ae
Author: Ziyi Tan <[email protected]>
AuthorDate: Fri Mar 7 02:36:49 2025 +0800
Update the relative path of the test data (#7221)
---
CONTRIBUTING.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 38236ee391..07ed5e010c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -112,16 +112,16 @@ git submodule update --init
This populates data in two git submodules:
-- `../parquet-testing/data` (sourced from
https://github.com/apache/parquet-testing.git)
-- `../testing` (sourced from https://github.com/apache/arrow-testing)
+- `./parquet-testing/data` (sourced from
https://github.com/apache/parquet-testing.git)
+- `./testing` (sourced from https://github.com/apache/arrow-testing)
By default, `cargo test` will look for these directories at their
standard location. The following environment variables can be used to override
the location:
```bash
# Optionally specify a different location for test data
-export PARQUET_TEST_DATA=$(cd ../parquet-testing/data; pwd)
-export ARROW_TEST_DATA=$(cd ../testing/data; pwd)
+export PARQUET_TEST_DATA=$(cd ./parquet-testing/data; pwd)
+export ARROW_TEST_DATA=$(cd ./testing/data; pwd)
```
From here on, this is a pure Rust project and `cargo` can be used to run
tests, benchmarks, docs and examples as usual.