From: Debian Science Team Date: Tue, 24 Apr 2018 19:09:20 +0000 (+0100) Subject: mark_tests_failing_on_386 X-Git-Tag: archive/raspbian/0.22.0-6+rpi1^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7587bb0e793033bdf52821cc7ef3e5f03e33ccaa;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)