Skip to content

Commit 311fcde

Browse files
CI: test_chunks_have_consistent_numerical_type periodically fails on 1.1.x (#35808)
1 parent 6d44a73 commit 311fcde

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/parser/test_common.py

+2
Original file line numberDiff line numberDiff line change
@@ -1138,6 +1138,7 @@ def test_parse_integers_above_fp_precision(all_parsers):
11381138
tm.assert_frame_equal(result, expected)
11391139

11401140

1141+
@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
11411142
def test_chunks_have_consistent_numerical_type(all_parsers):
11421143
parser = all_parsers
11431144
integers = [str(i) for i in range(499999)]
@@ -1151,6 +1152,7 @@ def test_chunks_have_consistent_numerical_type(all_parsers):
11511152
assert result.a.dtype == float
11521153

11531154

1155+
@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
11541156
def test_warn_if_chunks_have_mismatched_type(all_parsers):
11551157
warning_type = None
11561158
parser = all_parsers

0 commit comments

Comments
 (0)