jorisvandenbossche commented on code in PR #37624:
URL: https://github.com/apache/arrow/pull/37624#discussion_r1332743404
##########
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:
I don't have time today to look myself in detail at it, but let's first try
to investigate a bit more the cause of
https://github.com/apache/arrow/issues/37692.
Can we "just" skip the tests for now in the conda recipe tests if we want to
move forward with this PR in the meantime? (or leave adding minio to the test
deps for a separate PR)
--
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]