From: Debian Science Team Date: Tue, 24 Apr 2018 19:09:20 +0000 (+0100) Subject: mark_tests_working_on_intel_s390x X-Git-Tag: archive/raspbian/0.22.0-6+rpi1^2~14 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=89d015380360326718acd3b94b71b3c62db3c20c;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 ea2731f6..699d625a 100644 --- a/pandas/tests/indexes/datetimes/test_formats.py +++ b/pandas/tests/indexes/datetimes/test_formats.py @@ -2,10 +2,11 @@ from pandas import DatetimeIndex import numpy as np +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 bc58ea1c..1e4b9fe9 100644 --- a/pandas/tests/io/test_packers.py +++ b/pandas/tests/io/test_packers.py @@ -59,6 +59,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)): @@ -910,6 +911,7 @@ TestPackers else: tm.assert_frame_equal(result, expected) + @pytest.mark.intel @pytest.mark.parametrize('version', legacy_packers_versions()) def test_msgpacks_legacy(self, current_packers_data, all_packers_data, version):