Skip to content

Commit 82c2d5f

Browse files
authored
Update the relative path of the test data (#7221)
1 parent 95c42a7 commit 82c2d5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,16 @@ git submodule update --init
112112

113113
This populates data in two git submodules:
114114

115-
- `../parquet-testing/data` (sourced from https://github.com/apache/parquet-testing.git)
116-
- `../testing` (sourced from https://github.com/apache/arrow-testing)
115+
- `./parquet-testing/data` (sourced from https://github.com/apache/parquet-testing.git)
116+
- `./testing` (sourced from https://github.com/apache/arrow-testing)
117117

118118
By default, `cargo test` will look for these directories at their
119119
standard location. The following environment variables can be used to override the location:
120120

121121
```bash
122122
# Optionally specify a different location for test data
123-
export PARQUET_TEST_DATA=$(cd ../parquet-testing/data; pwd)
124-
export ARROW_TEST_DATA=$(cd ../testing/data; pwd)
123+
export PARQUET_TEST_DATA=$(cd ./parquet-testing/data; pwd)
124+
export ARROW_TEST_DATA=$(cd ./testing/data; pwd)
125125
```
126126

127127
From here on, this is a pure Rust project and `cargo` can be used to run tests, benchmarks, docs and examples as usual.

0 commit comments

Comments
 (0)