Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion spatialpandas/tests/test_fixedextensionarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,13 @@ class TestGeometryPrinting(eb.BasePrintingTests):


class TestGeometryMissing(eb.BaseMissingTests):
pass
@pytest.mark.skip(reason="__setitem__ not supported")
def test_fillna_frame(self):
pass

@pytest.mark.skip(reason="__setitem__ not supported")
def test_fillna_series(self):
pass


class TestGeometryReshaping(eb.BaseReshapingTests):
Expand Down
9 changes: 8 additions & 1 deletion spatialpandas/tests/test_listextensionarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,14 @@ class TestGeometryPrinting(eb.BasePrintingTests):


class TestGeometryMissing(eb.BaseMissingTests):
pass
@pytest.mark.skip(reason="__setitem__ not supported")
def test_fillna_frame(self):
pass

@pytest.mark.skip(reason="__setitem__ not supported")
def test_fillna_series(self):
pass



class TestGeometryReshaping(eb.BaseReshapingTests):
Expand Down