jorisvandenbossche commented on code in PR #37624:
URL: https://github.com/apache/arrow/pull/37624#discussion_r1332812476
##########
python/pyarrow/tests/test_fs.py:
##########
@@ -255,7 +255,10 @@ def s3fs(request, s3_server):
allow_move_dir=False,
allow_append_to_file=False,
)
- fs.delete_dir(bucket)
+ try:
+ fs.delete_dir(bucket)
+ except OSError:
+ pass
Review Comment:
We know those tests are passing right now on various other CI builds; they
are (probably) only failing here because of using a "wrong" minio version (of
course we should ensure to make them work with newer minio as well, but there
is a reason it is pinned at the moment). Hiding with a try/except would also
hide potential future errors on all those other CI builds that are working
right now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]