From ecdb159d83db1efbec4d130819ddeab519631512 Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Thu, 8 Mar 2018 06:26:08 -0500 Subject: [PATCH] TST: xfail test_time on py2 & mpl 1.4.3 --- pandas/tests/plotting/test_datetimelike.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/plotting/test_datetimelike.py b/pandas/tests/plotting/test_datetimelike.py index 3b70b3608a0bd..2f2931c9c86ac 100644 --- a/pandas/tests/plotting/test_datetimelike.py +++ b/pandas/tests/plotting/test_datetimelike.py @@ -1041,7 +1041,7 @@ def test_irreg_dtypes(self): _, ax = self.plt.subplots() _check_plot_works(df.plot, ax=ax) - @td.xfail_if_mpl_2_2 + @pytest.mark.xfail(not PY3, reason="failing on mpl 1.4.3 on PY2") @pytest.mark.slow def test_time(self): t = datetime(1, 1, 1, 3, 30, 0)