Skip to content

Commit 26cfd93

Browse files
authored
Skip test_fillna_frame and test_fillna_series extension array tests (#100)
1 parent 20aecf9 commit 26cfd93

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

spatialpandas/tests/test_fixedextensionarray.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,13 @@ class TestGeometryPrinting(eb.BasePrintingTests):
242242

243243

244244
class TestGeometryMissing(eb.BaseMissingTests):
245-
pass
245+
@pytest.mark.skip(reason="__setitem__ not supported")
246+
def test_fillna_frame(self):
247+
pass
248+
249+
@pytest.mark.skip(reason="__setitem__ not supported")
250+
def test_fillna_series(self):
251+
pass
246252

247253

248254
class TestGeometryReshaping(eb.BaseReshapingTests):

spatialpandas/tests/test_listextensionarray.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,14 @@ class TestGeometryPrinting(eb.BasePrintingTests):
241241

242242

243243
class TestGeometryMissing(eb.BaseMissingTests):
244-
pass
244+
@pytest.mark.skip(reason="__setitem__ not supported")
245+
def test_fillna_frame(self):
246+
pass
247+
248+
@pytest.mark.skip(reason="__setitem__ not supported")
249+
def test_fillna_series(self):
250+
pass
251+
245252

246253

247254
class TestGeometryReshaping(eb.BaseReshapingTests):

0 commit comments

Comments
 (0)