We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d44a73 commit 311fcdeCopy full SHA for 311fcde
pandas/tests/io/parser/test_common.py
@@ -1138,6 +1138,7 @@ def test_parse_integers_above_fp_precision(all_parsers):
1138
tm.assert_frame_equal(result, expected)
1139
1140
1141
+@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
1142
def test_chunks_have_consistent_numerical_type(all_parsers):
1143
parser = all_parsers
1144
integers = [str(i) for i in range(499999)]
@@ -1151,6 +1152,7 @@ def test_chunks_have_consistent_numerical_type(all_parsers):
1151
1152
assert result.a.dtype == float
1153
1154
1155
1156
def test_warn_if_chunks_have_mismatched_type(all_parsers):
1157
warning_type = None
1158
0 commit comments