From 425bc73e0fad71eb971e93760ab5854a453b2ad9 Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Tue, 16 May 2017 22:14:45 -0400 Subject: [PATCH] TST: remove pandas-datareader xfail as 0.4.0 works (#16374) --- pandas/tests/test_downstream.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index 12976272cb8b1d..27e3c29a70a9f1 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -84,12 +84,10 @@ def test_pandas_gbq(df): pandas_gbq = import_module('pandas_gbq') # noqa -@pytest.mark.xfail(reason=("pandas_datareader<=0.3.0 " - "broken w.r.t. pandas >= 0.20.0")) def test_pandas_datareader(): pandas_datareader = import_module('pandas_datareader') # noqa - pandas_datareader.get_data_yahoo('AAPL') + pandas_datareader.get_data_google('AAPL') def test_geopandas():