Skip to content

Commit

Permalink
xfail for json
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Aug 1, 2023
1 parent 0bb6a07 commit 360eb9d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pandas/tests/extension/json/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,14 @@ def test_equals(self, data, na_value, as_series):
def test_fillna_copy_frame(self, data_missing):
super().test_fillna_copy_frame(data_missing)

def test_equals_same_data_different_object(
self, data, using_copy_on_write, request
):
if using_copy_on_write:
mark = pytest.mark.xfail(reason="Fails with CoW")
request.node.add_marker(mark)
super().test_equals_same_data_different_object(data)


class TestCasting(BaseJSON, base.BaseCastingTests):
@pytest.mark.xfail(reason="failing on np.array(self, dtype=str)")
Expand Down

0 comments on commit 360eb9d

Please sign in to comment.