Skip to content

CI: Mark network test as xfail #39156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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