Skip to content

Commit

Permalink
don't test with minio for now
Browse files Browse the repository at this point in the history
This reverts commit f0b2133.
  • Loading branch information
h-vetinari committed Sep 21, 2023
1 parent d7af614 commit 53a4b70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
8 changes: 2 additions & 6 deletions dev/tasks/conda-recipes/arrow-cpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ outputs:
- fastparquet
- fsspec
- hypothesis
- minio-server
# currently disabled due to GH-37692
# - minio-server
- pandas
- s3fs >=2023
- scipy
Expand Down Expand Up @@ -390,11 +391,6 @@ outputs:
{% set tests_to_skip = tests_to_skip + " or test_fastparquet_cross_compatibility" %}
# new fsspec changed behaviour, see https://github.com/apache/arrow/issues/37555
{% set tests_to_skip = tests_to_skip + " or test_get_file_info_with_selector" %}
# problems with minio
{% set tests_to_skip = tests_to_skip + " or (test_delete_dir and S3FileSystem)" %}
{% set tests_to_skip = tests_to_skip + " or (test_delete_dir_contents and S3FileSystem)" %}
{% set tests_to_skip = tests_to_skip + " or (test_get_file_info and S3FileSystem)" %}
{% set tests_to_skip = tests_to_skip + " or (test_move_directory and S3FileSystem)" %}
# gandiva tests are segfaulting on ppc
{% set tests_to_skip = tests_to_skip + " or test_gandiva" %} # [ppc64le]
# test failures on ppc (both failing with: Float value was truncated converting to int32)
Expand Down
10 changes: 2 additions & 8 deletions python/pyarrow/tests/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,7 @@ def s3fs(request, s3_server):
allow_move_dir=False,
allow_append_to_file=False,
)
try:
fs.delete_dir(bucket)
except OSError:
pass
fs.delete_dir(bucket)


@pytest.fixture
Expand Down Expand Up @@ -360,10 +357,7 @@ def py_fsspec_s3fs(request, s3_server):
allow_move_dir=False,
allow_append_to_file=True,
)
try:
fs.delete_dir(bucket)
except OSError:
pass
fs.delete_dir(bucket)


@pytest.fixture(params=[
Expand Down

0 comments on commit 53a4b70

Please sign in to comment.