mark_tests_working_on_intel
authorDebian Science Team <debian-science-maintainers@lists.alioth.debian.org>
Sun, 10 Nov 2019 16:35:41 +0000 (16:35 +0000)
committerRebecca N. Palmer <rebecca_palmer@zoho.com>
Sun, 10 Nov 2019 16:35:41 +0000 (16:35 +0000)
Last-Update Sat, 14 Oct 2017 19:42:59 +0200
Bug-Debian: https://bugs.debian.org/877419
Author: Graham Inggs <ginggs@debian.org>
Last-Update: 2018-04-11

Gbp-Pq: Name mark_tests_working_on_intel.patch

pandas/tests/arithmetic/test_timedelta64.py
pandas/tests/frame/test_analytics.py
pandas/tests/frame/test_arithmetic.py
pandas/tests/frame/test_indexing.py
pandas/tests/groupby/aggregate/test_other.py
pandas/tests/series/test_constructors.py
pandas/tests/test_algos.py

index 326c565308124afae084536ccfa6a9d6645c581b..aaa4d6bd5af9bd7ad133b139fd9012b0b7b20e04 100644 (file)
@@ -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"]))
index e99208ac78e15f8dcf9beafcfcbd4968eb77d6ff..25f96fdf4ebc0058083a1957e905fb1ba80d6090 100644 (file)
@@ -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"]
index 7c022106c9104e63670069efe49ca4eb7f787f86..208c0c2c87e0387424c42c12b0ebb55a5ddf1cc4 100644 (file)
@@ -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
index 7b1e7c58f2c0692e7ec67c71e6e44a9fe14662a3..e63e3b1519687fa7a3fa985626a431831a74dbd1 100644 (file)
@@ -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
index 103ebf514b7021c80cc4d246d1d0734acbd847eb..a4c7a775a67884c4f21c02813912d4ebee87bdfe 100644 (file)
@@ -102,6 +102,7 @@ def test_agg_period_index():
     list(grouped)
 
 
+@pytest.mark.intel
 def test_agg_dict_parameter_cast_result_dtypes():
     # GH 12821
 
index 2f09d777e719cb461dd76a20cca8a9231aff51ea..6802e20fe7b4a66ccae7174a88a5bc5a23572e5e 100644 (file)
@@ -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]")
index c0d73821020b5326f55eec74953ead1f8ee2c2c0..ab68bc0c0104c2140dd9a758d17dc670c3984b67 100644 (file)
@@ -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])