From: Debian Science Team Date: Sun, 10 Nov 2019 16:35:41 +0000 (+0000) Subject: mark_tests_working_on_intel_s390x X-Git-Tag: archive/raspbian/0.25.3+dfsg2-2+rpi1~1^2^2^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3180418bd94acc4e4debe8a24f81508015169d33;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 33a744cc..d9181256 100644 --- a/pandas/tests/indexes/datetimes/test_formats.py +++ b/pandas/tests/indexes/datetimes/test_formats.py @@ -10,6 +10,7 @@ from pandas import DatetimeIndex, Series import pandas.util.testing as tm +@pytest.mark.intel def test_to_native_types(): index = pd.date_range(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 33a11087..02c6d360 100644 --- a/pandas/tests/io/test_packers.py +++ b/pandas/tests/io/test_packers.py @@ -69,6 +69,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)): @@ -940,6 +941,7 @@ class TestMsgpack: def compare_frame_dt_mixed_tzs(self, result, expected, typ, version): tm.assert_frame_equal(result, expected) + @pytest.mark.intel def test_msgpacks_legacy( self, current_packers_data, all_packers_data, legacy_packer, datapath ):