Skip to content

Commit 09c53fe

Browse files
authored
Skip some more pandas extension array __setitem__ tests (#112)
1 parent 25fd687 commit 09c53fe

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

spatialpandas/tests/test_fixedextensionarray.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,15 @@ def test_insert_invalid(self, data, invalid_scalar):
220220
def test_searchsorted(self):
221221
pass
222222

223-
@pytest.mark.skip(
224-
reason="__setitem__ not supported"
225-
)
223+
@pytest.mark.skip(reason="__setitem__ not supported")
224+
def test_fillna_copy_frame(self, data):
225+
pass
226+
227+
@pytest.mark.skip(reason="__setitem__ not supported")
228+
def test_fillna_copy_series(self, data):
229+
pass
230+
231+
@pytest.mark.skip(reason="__setitem__ not supported")
226232
def test_shift_0_periods(self, data):
227233
pass
228234

spatialpandas/tests/test_listextensionarray.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,15 @@ def test_insert_invalid(self, data, invalid_scalar):
220220
def test_searchsorted(self):
221221
pass
222222

223-
@pytest.mark.skip(
224-
reason="__setitem__ not supported"
225-
)
223+
@pytest.mark.skip(reason="__setitem__ not supported")
224+
def test_fillna_copy_frame(self, data):
225+
pass
226+
227+
@pytest.mark.skip(reason="__setitem__ not supported")
228+
def test_fillna_copy_series(self, data):
229+
pass
230+
231+
@pytest.mark.skip(reason="__setitem__ not supported")
226232
def test_shift_0_periods(self, data):
227233
pass
228234

0 commit comments

Comments
 (0)