From: Debian Science Team Date: Sat, 14 Sep 2019 15:37:43 +0000 (+0100) Subject: mark_tests_working_on_intel_s390x X-Git-Tag: archive/raspbian/0.25.3+dfsg2-2+rpi1~1^2^2^2^2^2^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c39bc3964895ad94c8a9ed469bc575df9410f010;p=pandas.git mark_tests_working_on_intel_s390x Gbp-Pq: Name mark_tests_working_on_intel_s390x.patch --- diff --git a/pandas/tests/indexes/datetimes/test_formats.py b/pandas/tests/indexes/datetimes/test_formats.py index 63d5338d..c408b9c9 100644 --- a/pandas/tests/indexes/datetimes/test_formats.py +++ b/pandas/tests/indexes/datetimes/test_formats.py @@ -6,10 +6,11 @@ import dateutil.tz import pytz import pytest +import pytest import pandas.util.testing as tm import pandas as pd - +@pytest.mark.intel def test_to_native_types(): index = DatetimeIndex(freq='1D', periods=3, start='2017-01-01') diff --git a/pandas/tests/io/test_packers.py b/pandas/tests/io/test_packers.py index 491d5fe3..b656f9e9 100644 --- a/pandas/tests/io/test_packers.py +++ b/pandas/tests/io/test_packers.py @@ -60,6 +60,7 @@ def all_packers_data(): return create_data() +@pytest.mark.intel def check_arbitrary(a, b): if isinstance(a, (list, tuple)) and isinstance(b, (list, tuple)): @@ -921,6 +922,7 @@ TestPackers else: tm.assert_frame_equal(result, expected) + @pytest.mark.intel def test_msgpacks_legacy(self, current_packers_data, all_packers_data, legacy_packer, datapath):