From: Debian Science Team Date: Tue, 29 May 2018 13:50:59 +0000 (+0100) Subject: mark_tests_failing_on_386 X-Git-Tag: archive/raspbian/0.22.0-7+rpi1^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6e37760a2c22b96b97ae156f0005bf3ace16a42a;p=pandas.git mark_tests_failing_on_386 Gbp-Pq: Name mark_tests_failing_on_386.patch --- diff --git a/pandas/tests/plotting/test_series.py b/pandas/tests/plotting/test_series.py index d04065ee..cbbe3a8b 100644 --- a/pandas/tests/plotting/test_series.py +++ b/pandas/tests/plotting/test_series.py @@ -717,6 +717,8 @@ class TestSeriesPlots(TestPlotBase): with pytest.raises(TypeError): s.plot(kind=kind, ax=ax) + @pytest.mark.skipif(tm.is_platform_32bit, + reason="https://github.com/pandas-dev/pandas/issues/19814") @pytest.mark.slow def test_valid_object_plot(self): s = Series(lrange(10), dtype=object)