From da7a1efd030c4915eeb05a998f90b078c097bd9a Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Fri, 11 Mar 2022 12:22:58 +0100 Subject: [PATCH] Revert "CI: xfail geopandas downstream test on MacOS due to fiona install (#46296)" This reverts commit 471319ba78c540766368a7a5e784ab20424ba9e1. --- pandas/tests/test_downstream.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index ce1e396ad92ac..ce7c7a634f5a9 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -8,7 +8,6 @@ import numpy as np import pytest -from pandas.compat import is_platform_mac import pandas.util._test_decorators as td import pandas as pd @@ -197,13 +196,6 @@ def test_pandas_datareader(): # importing from pandas, Cython import warning @pytest.mark.filterwarnings("ignore:can't resolve:ImportWarning") -@pytest.mark.xfail( - is_platform_mac(), - raises=ImportError, - reason="ImportError: the 'read_file' function requires the 'fiona' package, " - "but it is not installed or does not import correctly", - strict=False, -) def test_geopandas(): geopandas = import_module("geopandas")