Skip to content

Commit 3c87b01

Browse files
authored
CI/TST: change skip to xfail #35660 (#35672)
1 parent 8380708 commit 3c87b01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/test_common.py

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

11401140

1141-
@pytest.mark.skip("unreliable test #35214")
1141+
@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
11421142
def test_chunks_have_consistent_numerical_type(all_parsers):
11431143
parser = all_parsers
11441144
integers = [str(i) for i in range(499999)]
@@ -1152,7 +1152,7 @@ def test_chunks_have_consistent_numerical_type(all_parsers):
11521152
assert result.a.dtype == float
11531153

11541154

1155-
@pytest.mark.skip("unreliable test #35214")
1155+
@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
11561156
def test_warn_if_chunks_have_mismatched_type(all_parsers):
11571157
warning_type = None
11581158
parser = all_parsers

0 commit comments

Comments
 (0)