jorisvandenbossche commented on a change in pull request #8064:
URL: https://github.com/apache/arrow/pull/8064#discussion_r484804628



##########
File path: python/pyarrow/tests/test_parquet.py
##########
@@ -2170,7 +2170,10 @@ def s3_example_s3fs(s3_connection, s3_server, s3_bucket):
 
     fs.mkdir(bucket_uri)
     yield fs, bucket_uri
-    fs.rm(bucket_uri, recursive=True)
+    try:
+        fs.rm(bucket_uri, recursive=True)
+    except FileNotFoundError:
+        pass

Review comment:
       For some reason the teardown gave errors for the added test where 
nothing got written (because we already errored when checking the file path). 
Not sure why though.
   
   It gave `FileNotFoundError: s3://test-s3fs/07f5f3460595484aae4482f19168c3cc`




----------------------------------------------------------------
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.

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


Reply via email to