Skip to content

Commit b4e578d

Browse files
authored
CI/TST: xfail(strict=False) s3 networking tests (#45466)
1 parent 14e09c4 commit b4e578d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

pandas/tests/io/json/test_compression.py

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ def test_read_zipped_json(datapath):
3838

3939

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

pandas/tests/io/parser/test_network.py

+5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ def tips_df(datapath):
7272
@td.skip_if_not_us_locale()
7373
class TestS3:
7474
@td.skip_if_no("s3fs")
75+
@pytest.mark.xfail(
76+
reason="CI race condition GH 45433, GH 44584",
77+
raises=FileNotFoundError,
78+
strict=False,
79+
)
7580
def test_parse_public_s3_bucket(self, tips_df, s3so):
7681

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

0 commit comments

Comments
 (0)