We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b0bdc commit c8dcf19Copy full SHA for c8dcf19
pandas/tests/io/parser/test_network.py
@@ -179,14 +179,14 @@ def test_s3_fails(self):
179
read_csv('s3://cant_get_it/')
180
181
@tm.network
182
- def boto3_client_s3(self):
+ def test_boto3_client_s3(self):
183
# see gh-16135
184
185
# boto3 is a dependency of s3fs
186
import boto3
187
client = boto3.client("s3")
188
189
- key = "/tips.csv"
+ key = "tips.csv"
190
bucket = "pandas-test"
191
s3_object = client.get_object(Bucket=bucket, Key=key)
192
0 commit comments