We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f0c3c commit ffe07f8Copy full SHA for ffe07f8
pandas/tests/io/test_s3.py
@@ -2,6 +2,8 @@
2
3
import pytest
4
5
+import pandas.util._test_decorators as td
6
+
7
from pandas import read_csv
8
9
from pandas.io.common import is_s3_url
@@ -23,3 +25,10 @@ def test_streaming_s3_objects():
23
25
for el in data:
24
26
body = StreamingBody(BytesIO(el), content_length=len(el))
27
read_csv(body)
28
29
30
+@td.skip_if_no("s3fs")
31
+def test_read_csv_from_public_bucket():
32
+ # https://github.com/pandas-dev/pandas/issues/34626
33
+ result = read_csv("s3://nyc-tlc/misc/taxi _zone_lookup.csv")
34
+ assert result.shape == (265, 4)
0 commit comments