From 2b8513de9a5ebaf561fa2d3882eb780433e268ed Mon Sep 17 00:00:00 2001 From: Debian Science Team Date: Sun, 10 Nov 2019 16:35:41 +0000 Subject: [PATCH] mark_tests_failing_on_386 Gbp-Pq: Name mark_tests_failing_on_386.patch --- pandas/tests/plotting/test_series.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandas/tests/plotting/test_series.py b/pandas/tests/plotting/test_series.py index 8b4a78e9..becab204 100644 --- a/pandas/tests/plotting/test_series.py +++ b/pandas/tests/plotting/test_series.py @@ -10,6 +10,7 @@ import numpy as np from numpy.random import randn import pytest +from pandas.compat import is_platform_32bit import pandas.util._test_decorators as td import pandas as pd @@ -693,6 +694,8 @@ class TestSeriesPlots(TestPlotBase): with pytest.raises(TypeError, match=msg): s.plot(kind=kind, ax=ax) + @pytest.mark.skipif(is_platform_32bit, + reason="https://github.com/pandas-dev/pandas/issues/19814") @pytest.mark.slow def test_valid_object_plot(self): s = Series(range(10), dtype=object) -- 2.30.2