From b805952ae7088e8a4887ca8612fbf0210af728d1 Mon Sep 17 00:00:00 2001 From: Martin Fleischmann Date: Sun, 7 Mar 2021 14:49:00 +0000 Subject: [PATCH] TST: skip pandas master fillna test --- geopandas/tests/test_extension_array.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/geopandas/tests/test_extension_array.py b/geopandas/tests/test_extension_array.py index 37d37a3d41..be0940859b 100644 --- a/geopandas/tests/test_extension_array.py +++ b/geopandas/tests/test_extension_array.py @@ -366,6 +366,10 @@ def test_fillna_limit_backfill(self, data_missing): def test_fillna_series_method(self, data_missing, method): pass + @pytest.mark.skip("fillna method not supported") + def test_fillna_no_op_returns_copy(self, data): + pass + class TestReduce(extension_tests.BaseNoReduceTests): @pytest.mark.skip("boolean reduce (any/all) tested in test_pandas_methods")