From 2923030a1c999786d8bd4287ce1afb0210085635 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Tue, 19 Mar 2019 06:22:15 +0000 Subject: [PATCH 1/2] TST: Check pytables<3.5.1 when skipping 3.5.1 was made available on conda, causing 'xfail_non_writeable' tests to fail. --- pandas/tests/io/test_pytables.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/tests/io/test_pytables.py b/pandas/tests/io/test_pytables.py index 69ff32d1b728b..01bf697509c04 100644 --- a/pandas/tests/io/test_pytables.py +++ b/pandas/tests/io/test_pytables.py @@ -38,7 +38,8 @@ # remove when gh-24839 is fixed; this affects numpy 1.16 # and pytables 3.4.4 xfail_non_writeable = pytest.mark.xfail( - LooseVersion(np.__version__) >= LooseVersion('1.16'), + LooseVersion(np.__version__) >= LooseVersion('1.16') and + LooseVersion(tables.__version__) < LooseVersion('3.5.1'), reason=('gh-25511, gh-24839. pytables needs a ' 'release beyong 3.4.4 to support numpy 1.16x')) From 9d61a0be1d60166b38d61433b732a7b3accc6204 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Tue, 19 Mar 2019 16:57:40 +0000 Subject: [PATCH 2/2] TST: Skip geopandas downstream test xref gh-25778 --- pandas/tests/test_downstream.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py index 92b4e5a99041a..f39d743256f45 100644 --- a/pandas/tests/test_downstream.py +++ b/pandas/tests/test_downstream.py @@ -118,6 +118,7 @@ def test_pandas_datareader(): @pytest.mark.filterwarnings("ignore:The 'warn':DeprecationWarning") @pytest.mark.filterwarnings("ignore:pandas.util:DeprecationWarning") @pytest.mark.filterwarnings("ignore:can't resolve:ImportWarning") +@pytest.mark.skip(reason="gh-25778: geopandas stack issue") def test_geopandas(): geopandas = import_module('geopandas') # noqa