Skip to content

Commit

Permalink
CI: Mark network test as xfail (#39156)
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Jan 13, 2021
1 parent a6bc6ec commit 25110a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pandas/tests/io/parser/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ def test_read_s3_fails(self, s3so):
with pytest.raises(IOError, match=msg):
read_csv("s3://cant_get_it/file.csv")

@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
def test_write_s3_csv_fails(self, tips_df, s3so):
# GH 32486
# Attempting to write to an invalid S3 path should raise
Expand All @@ -224,6 +225,7 @@ def test_write_s3_csv_fails(self, tips_df, s3so):
"s3://an_s3_bucket_data_doesnt_exit/not_real.csv", storage_options=s3so
)

@pytest.mark.xfail(reason="GH#39155 s3fs upgrade")
@td.skip_if_no("pyarrow")
def test_write_s3_parquet_fails(self, tips_df, s3so):
# GH 27679
Expand Down

0 comments on commit 25110a9

Please sign in to comment.