Skip to content

Commit 70fe640

Browse files
committed
Skip flaky S3-parquet tests
1 parent 61f2579 commit 70fe640

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/io/test_parquet.py

+4
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@ def test_categorical(self, pa):
450450
expected = df.assign(a=df.a.astype(object))
451451
check_round_trip(df, pa, expected=expected)
452452

453+
@pytest.mark.skip(reason='sometimes leaves an unclosed socket that causes '
454+
'ResourceWarning')
453455
def test_s3_roundtrip(self, df_compat, s3_resource, pa):
454456
# GH #19134
455457
check_round_trip(df_compat, pa,
@@ -528,6 +530,8 @@ def test_filter_row_groups(self, fp):
528530
result = read_parquet(path, fp, filters=[('a', '==', 0)])
529531
assert len(result) == 1
530532

533+
@pytest.mark.skip(reason='sometimes leaves an unclosed socket that causes '
534+
'ResourceWarning')
531535
def test_s3_roundtrip(self, df_compat, s3_resource, fp):
532536
# GH #19134
533537
check_round_trip(df_compat, fp,

0 commit comments

Comments
 (0)