Skip to content

Commit

Permalink
Skip test_fillna_frame and test_fillna_series extension array tests (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 authored Nov 22, 2022
1 parent 20aecf9 commit 26cfd93
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
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

0 comments on commit 26cfd93

Please sign in to comment.