Skip to content

Commit a4c2d17

Browse files
authored
CI: Set xfail to stric=False for network tests (pandas-dev#39193)
1 parent 2c80640 commit a4c2d17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/test_network.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def test_read_s3_fails(self, s3so):
209209
with pytest.raises(IOError, match=msg):
210210
read_csv("s3://cant_get_it/file.csv")
211211

212-
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
212+
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade", strict=False)
213213
def test_write_s3_csv_fails(self, tips_df, s3so):
214214
# GH 32486
215215
# Attempting to write to an invalid S3 path should raise
@@ -225,7 +225,7 @@ def test_write_s3_csv_fails(self, tips_df, s3so):
225225
"s3://an_s3_bucket_data_doesnt_exit/not_real.csv", storage_options=s3so
226226
)
227227

228-
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
228+
@pytest.mark.xfail(reason="GH#39155 s3fs upgrade", strict=False)
229229
@td.skip_if_no("pyarrow")
230230
def test_write_s3_parquet_fails(self, tips_df, s3so):
231231
# GH 27679

0 commit comments

Comments
 (0)