Skip to content

Commit

Permalink
Temporarily disable tests due to pandas issue #42437
Browse files Browse the repository at this point in the history
  • Loading branch information
frreiss committed Jul 7, 2021
1 parent 3f54198 commit 50a985e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion text_extensions_for_pandas/array/test_tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,11 @@ def test_reindex(self, data, na_value):


class TestPandasSetitem(base.BaseSetitemTests):
pass
# Temporarily disabled until Pandas issue #42437 is fixed
# See Text Extensions for Pandas issue #221 for a workaround.
@pytest.mark.skip(reason="See Pandas issue #42437")
def test_setitem_series(self, data, full_indexer):
super().test_setitem_series(data, full_indexer)


class TestPandasMissing(base.BaseMissingTests):
Expand Down

0 comments on commit 50a985e

Please sign in to comment.