Skip to content

Commit

Permalink
CI: test_chunks_have_consistent_numerical_type periodically fails on …
Browse files Browse the repository at this point in the history
…1.1.x (#35808)
  • Loading branch information
simonjayhawkins committed Aug 20, 2020
1 parent 6d44a73 commit 311fcde
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pandas/tests/io/parser/test_common.py
Expand Up @@ -1138,6 +1138,7 @@ def test_parse_integers_above_fp_precision(all_parsers):
tm.assert_frame_equal(result, expected)


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


@pytest.mark.xfail(reason="ResourceWarning #35660", strict=False)
def test_warn_if_chunks_have_mismatched_type(all_parsers):
warning_type = None
parser = all_parsers
Expand Down

0 comments on commit 311fcde

Please sign in to comment.