From 1e8a05e2ed647f4503577575db76db8b0d5caf74 Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Fri, 25 May 2018 06:40:09 -0400 Subject: [PATCH 1/2] CI: use latest deps for pandas-datareader, python-dateutil xfail geopandas --- ci/travis-36.yaml | 4 ++-- pandas/tests/test_downstream.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/travis-36.yaml b/ci/travis-36.yaml index fe057e714761e..006276ba1a65f 100644 --- a/ci/travis-36.yaml +++ b/ci/travis-36.yaml @@ -18,12 +18,10 @@ dependencies: - numexpr - numpy - openpyxl - - pandas-datareader - psycopg2 - pyarrow - pymysql - pytables - - python-dateutil - python-snappy - python=3.6* - pytz @@ -45,3 +43,5 @@ dependencies: - pip: - brotlipy - coverage + - pandas-datareader + - python-dateutil diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index a595d9f18d6b8..99adc9765d515 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -87,6 +87,7 @@ def test_pandas_gbq(df): pandas_gbq = import_module('pandas_gbq') # noqa +@pytest.xfail(reason="0.7.0 pending") @tm.network def test_pandas_datareader(): @@ -95,6 +96,7 @@ def test_pandas_datareader(): 'F', 'quandl', '2017-01-01', '2017-02-01') +@pytest.xfail(reaason="downstream install issue") def test_geopandas(): geopandas = import_module('geopandas') # noqa From ee8870fb01b7482a0869cad965f1d2f2d1d04dfc Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Fri, 25 May 2018 06:51:49 -0400 Subject: [PATCH 2/2] bad xfail --- pandas/tests/test_downstream.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index 99adc9765d515..c28e2052bd93e 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -87,7 +87,7 @@ def test_pandas_gbq(df): pandas_gbq = import_module('pandas_gbq') # noqa -@pytest.xfail(reason="0.7.0 pending") +@pytest.mark.xfail(reason="0.7.0 pending") @tm.network def test_pandas_datareader(): @@ -96,7 +96,7 @@ def test_pandas_datareader(): 'F', 'quandl', '2017-01-01', '2017-02-01') -@pytest.xfail(reaason="downstream install issue") +@pytest.mark.xfail(reaason="downstream install issue") def test_geopandas(): geopandas = import_module('geopandas') # noqa