From 26cfd9393e0b110cdfdd627bca711d5fbb0c9bc9 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Tue, 22 Nov 2022 11:42:58 +0000 Subject: [PATCH] Skip test_fillna_frame and test_fillna_series extension array tests (#100) --- spatialpandas/tests/test_fixedextensionarray.py | 8 +++++++- spatialpandas/tests/test_listextensionarray.py | 9 ++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/spatialpandas/tests/test_fixedextensionarray.py b/spatialpandas/tests/test_fixedextensionarray.py index d2ac5b7..cd5aff7 100644 --- a/spatialpandas/tests/test_fixedextensionarray.py +++ b/spatialpandas/tests/test_fixedextensionarray.py @@ -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): diff --git a/spatialpandas/tests/test_listextensionarray.py b/spatialpandas/tests/test_listextensionarray.py index 1cdb74c..02176c8 100644 --- a/spatialpandas/tests/test_listextensionarray.py +++ b/spatialpandas/tests/test_listextensionarray.py @@ -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):