Skip to content

Commit 9fa91cb

Browse files
committed
Temporarily skip tests if minio not found
1 parent 6917793 commit 9fa91cb

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/cpp_extra.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,10 @@ jobs:
342342
run: |
343343
# MinIO is required
344344
# TODO: This doesn't seem like a good solution
345+
# TODO: Waiting for PR 50215 to be merged
345346
exclude_tests="arrow-s3fs-test"
346347
exclude_tests="${exclude_tests}|arrow-s3fs-module-test"
348+
exclude_tests="${exclude_tests}|arrow-filesystem-test"
347349
# unstable
348350
exclude_tests="${exclude_tests}|arrow-acero-asof-join-node-test"
349351
exclude_tests="${exclude_tests}|arrow-acero-hash-join-node-test"

ci/scripts/cpp_test.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ if ! type storage-testbench >/dev/null 2>&1; then
5252
fi
5353
if ! type minio >/dev/null 2>&1; then
5454
# TODO: This doesn't seem like a good solution
55-
# We are excluding tests that shouldn't be excluded
55+
# TODO: Waiting for PR 50215 to be merged
5656
exclude_tests+=("arrow-s3fs-test")
5757
exclude_tests+=("arrow-s3fs-module-test")
58+
exclude_tests+=("arrow-filesystem-test")
5859
fi
5960
case "$(uname)" in
6061
Linux)
@@ -63,9 +64,10 @@ case "$(uname)" in
6364
Darwin)
6465
n_jobs=$(sysctl -n hw.ncpu)
6566
# TODO: https://github.com/apache/arrow/issues/40410
66-
# TODO: This is not a good solution
67+
# TODO: Waiting for PR 50215 to be merged
6768
exclude_tests+=("arrow-s3fs-test")
6869
exclude_tests+=("arrow-s3fs-module-test")
70+
exclude_tests+=("arrow-filesystem-test")
6971
;;
7072
MINGW*)
7173
n_jobs=${NUMBER_OF_PROCESSORS:-1}

0 commit comments

Comments
 (0)