We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3836f87 commit 0d37d4fCopy full SHA for 0d37d4f
pandas/tests/test_downstream.py
@@ -8,6 +8,7 @@
8
import numpy as np
9
import pytest
10
11
+from pandas.compat import is_platform_windows
12
import pandas.util._test_decorators as td
13
14
import pandas as pd
@@ -225,6 +226,13 @@ def test_pandas_datareader():
225
226
227
# importing from pandas, Cython import warning
228
@pytest.mark.filterwarnings("ignore:can't resolve:ImportWarning")
229
+@pytest.mark.xfail(
230
+ is_platform_windows(),
231
+ raises=ImportError,
232
+ reason="ImportError: the 'read_file' function requires the 'fiona' package, "
233
+ "but it is not installed or does not import correctly",
234
+ strict=False,
235
+)
236
def test_geopandas():
237
238
geopandas = import_module("geopandas")
0 commit comments