From bdb026b82dfc98ca45095118744ec900e607ff9d Mon Sep 17 00:00:00 2001 From: Debian Science Team Date: Sun, 10 Nov 2019 16:35:41 +0000 Subject: [PATCH] mark_tests_working_on_intel Last-Update Sat, 14 Oct 2017 19:42:59 +0200 Bug-Debian: https://bugs.debian.org/877419 Author: Graham Inggs Last-Update: 2018-04-11 Gbp-Pq: Name mark_tests_working_on_intel.patch --- pandas/tests/arithmetic/test_timedelta64.py | 1 + pandas/tests/frame/test_analytics.py | 1 + pandas/tests/frame/test_arithmetic.py | 1 + pandas/tests/frame/test_indexing.py | 1 + pandas/tests/groupby/aggregate/test_other.py | 1 + pandas/tests/series/test_constructors.py | 1 + pandas/tests/test_algos.py | 1 + 7 files changed, 7 insertions(+) diff --git a/pandas/tests/arithmetic/test_timedelta64.py b/pandas/tests/arithmetic/test_timedelta64.py index 326c5653..aaa4d6bd 100644 --- a/pandas/tests/arithmetic/test_timedelta64.py +++ b/pandas/tests/arithmetic/test_timedelta64.py @@ -569,6 +569,7 @@ class TestTimedeltaArraylikeAddSubOps: # TODO: moved from tests.indexes.timedeltas.test_arithmetic; needs # parametrization+de-duplication + @pytest.mark.intel def test_timedelta_ops_with_missing_values(self): # setup s1 = pd.to_timedelta(Series(["00:00:01"])) diff --git a/pandas/tests/frame/test_analytics.py b/pandas/tests/frame/test_analytics.py index e99208ac..25f96fdf 100644 --- a/pandas/tests/frame/test_analytics.py +++ b/pandas/tests/frame/test_analytics.py @@ -1368,6 +1368,7 @@ class TestDataFrameAnalytics: expected = pd.Series(result, index=["A", "B"]) tm.assert_series_equal(result, expected) + @pytest.mark.intel def test_sum_nanops_timedelta(self): # prod isn't defined on timedeltas idx = ["a", "b", "c"] diff --git a/pandas/tests/frame/test_arithmetic.py b/pandas/tests/frame/test_arithmetic.py index 7c022106..208c0c2c 100644 --- a/pandas/tests/frame/test_arithmetic.py +++ b/pandas/tests/frame/test_arithmetic.py @@ -65,6 +65,7 @@ class TestFrameComparisons: ) check(df, df2) + @pytest.mark.intel def test_timestamp_compare(self): # make sure we can compare Timestamps on the right AND left hand side # GH#4982 diff --git a/pandas/tests/frame/test_indexing.py b/pandas/tests/frame/test_indexing.py index 7b1e7c58..e63e3b15 100644 --- a/pandas/tests/frame/test_indexing.py +++ b/pandas/tests/frame/test_indexing.py @@ -3049,6 +3049,7 @@ class TestDataFrameIndexing(TestData): result = a.where(do_not_replace, b) assert_frame_equal(result, expected) + @pytest.mark.intel def test_where_datetime(self): # GH 3311 diff --git a/pandas/tests/groupby/aggregate/test_other.py b/pandas/tests/groupby/aggregate/test_other.py index 103ebf51..a4c7a775 100644 --- a/pandas/tests/groupby/aggregate/test_other.py +++ b/pandas/tests/groupby/aggregate/test_other.py @@ -102,6 +102,7 @@ def test_agg_period_index(): list(grouped) +@pytest.mark.intel def test_agg_dict_parameter_cast_result_dtypes(): # GH 12821 diff --git a/pandas/tests/series/test_constructors.py b/pandas/tests/series/test_constructors.py index 2f09d777..6802e20f 100644 --- a/pandas/tests/series/test_constructors.py +++ b/pandas/tests/series/test_constructors.py @@ -1246,6 +1246,7 @@ class TestSeriesConstructors: series[2] = val assert isna(series[2]) + @pytest.mark.intel def test_NaT_cast(self): # GH10747 result = Series([np.nan]).astype("M8[ns]") diff --git a/pandas/tests/test_algos.py b/pandas/tests/test_algos.py index c0d73821..ab68bc0c 100644 --- a/pandas/tests/test_algos.py +++ b/pandas/tests/test_algos.py @@ -1035,6 +1035,7 @@ class TestValueCounts: expected = Series([2, 1, 1], index=[5.0, 10.3, np.nan]) tm.assert_series_equal(result, expected) + @pytest.mark.intel def test_value_counts_normalized(self): # GH12558 s = Series([1, 2, np.nan, np.nan, np.nan]) -- 2.30.2