Skip to content

Commit 3969ca4

Browse files
Backport PR #39156: CI: Mark network test as xfail (#39157)
Co-authored-by: patrick <[email protected]>
1 parent 673b333 commit 3969ca4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/parser/test_network.py

+2
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def test_read_s3_fails(self, s3so):
208208
with pytest.raises(IOError):
209209
read_csv("s3://cant_get_it/file.csv")
210210

211+
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
211212
def test_write_s3_csv_fails(self, tips_df, s3so):
212213
# GH 32486
213214
# Attempting to write to an invalid S3 path should raise
@@ -223,6 +224,7 @@ def test_write_s3_csv_fails(self, tips_df, s3so):
223224
"s3://an_s3_bucket_data_doesnt_exit/not_real.csv", storage_options=s3so
224225
)
225226

227+
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
226228
@td.skip_if_no("pyarrow")
227229
def test_write_s3_parquet_fails(self, tips_df, s3so):
228230
# GH 27679

0 commit comments

Comments
 (0)