Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
xfail test_transpose (#194)
Browse files Browse the repository at this point in the history
This fails partly to us not supporting item access on lists yet and also because views are not handled properly in fletcher.
  • Loading branch information
xhochy authored Oct 14, 2020
1 parent aca65c6 commit b333131
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_pandas_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,12 @@ def test_merge_on_extension_array_duplicates(self, data):
def test_ravel(self, data):
BaseReshapingTests.test_ravel(self, data)

@xfail_list_setitem_not_implemented
@pytest.mark.xfail(reason="Views don't update their parent #96")
def test_transpose(self, data):
if hasattr(BaseReshapingTests, "test_transpose"):
BaseReshapingTests.test_transpose(self, data)


class TestBaseSetitemTests(BaseSetitemTests):
@xfail_list_setitem_not_implemented
Expand Down

0 comments on commit b333131

Please sign in to comment.