You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "pitrou (via GitHub)" <gi...@apache.org> on 2023/09/21 09:10:42 UTC

[GitHub] [arrow] pitrou commented on a diff in pull request #37624: GH-37621: [Packaging][Conda] Sync conda recipes with feedstocks

pitrou commented on code in PR #37624:
URL: https://github.com/apache/arrow/pull/37624#discussion_r1332736975


##########
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 should certainly fix the underlying issue instead of trying to hide it like this.



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org