Skip to content

CI/TST: xfail(strict=False) s3 networking tests #45466

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 1 commit into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions pandas/tests/io/json/test_compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ def test_read_zipped_json(datapath):


@td.skip_if_not_us_locale
@pytest.mark.xfail(
reason="CI race condition GH 45433, GH 44584",
raises=FileNotFoundError,
strict=False,
)
def test_with_s3_url(compression, s3_resource, s3so):
# Bucket "pandas-test" created in tests/io/conftest.py

Expand Down
5 changes: 5 additions & 0 deletions pandas/tests/io/parser/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ def tips_df(datapath):
@td.skip_if_not_us_locale()
class TestS3:
@td.skip_if_no("s3fs")
@pytest.mark.xfail(
reason="CI race condition GH 45433, GH 44584",
raises=FileNotFoundError,
strict=False,
)
def test_parse_public_s3_bucket(self, tips_df, s3so):

# more of an integration test due to the not-public contents portion
Expand Down