Skip to content

Commit bdb026b

Browse files
Debian Science Teamrebecca-palmer
Debian Science Team
authored andcommitted
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 <[email protected]> Last-Update: 2018-04-11 Gbp-Pq: Name mark_tests_working_on_intel.patch
1 parent 1bccc51 commit bdb026b

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

pandas/tests/arithmetic/test_timedelta64.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ def test_td64_df_add_int_frame(self):
569569

570570
# TODO: moved from tests.indexes.timedeltas.test_arithmetic; needs
571571
# parametrization+de-duplication
572+
@pytest.mark.intel
572573
def test_timedelta_ops_with_missing_values(self):
573574
# setup
574575
s1 = pd.to_timedelta(Series(["00:00:01"]))

pandas/tests/frame/test_analytics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,6 +1368,7 @@ def test_sum_prod_nanops(self, method, unit):
13681368
expected = pd.Series(result, index=["A", "B"])
13691369
tm.assert_series_equal(result, expected)
13701370

1371+
@pytest.mark.intel
13711372
def test_sum_nanops_timedelta(self):
13721373
# prod isn't defined on timedeltas
13731374
idx = ["a", "b", "c"]

pandas/tests/frame/test_arithmetic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def check(df, df2):
6565
)
6666
check(df, df2)
6767

68+
@pytest.mark.intel
6869
def test_timestamp_compare(self):
6970
# make sure we can compare Timestamps on the right AND left hand side
7071
# GH#4982

pandas/tests/frame/test_indexing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3049,6 +3049,7 @@ def test_where_bug_transposition(self):
30493049
result = a.where(do_not_replace, b)
30503050
assert_frame_equal(result, expected)
30513051

3052+
@pytest.mark.intel
30523053
def test_where_datetime(self):
30533054

30543055
# GH 3311

pandas/tests/groupby/aggregate/test_other.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def test_agg_period_index():
102102
list(grouped)
103103

104104

105+
@pytest.mark.intel
105106
def test_agg_dict_parameter_cast_result_dtypes():
106107
# GH 12821
107108

pandas/tests/series/test_constructors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,7 @@ def test_NaT_scalar(self):
12461246
series[2] = val
12471247
assert isna(series[2])
12481248

1249+
@pytest.mark.intel
12491250
def test_NaT_cast(self):
12501251
# GH10747
12511252
result = Series([np.nan]).astype("M8[ns]")

pandas/tests/test_algos.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,6 +1035,7 @@ def test_dropna(self):
10351035
expected = Series([2, 1, 1], index=[5.0, 10.3, np.nan])
10361036
tm.assert_series_equal(result, expected)
10371037

1038+
@pytest.mark.intel
10381039
def test_value_counts_normalized(self):
10391040
# GH12558
10401041
s = Series([1, 2, np.nan, np.nan, np.nan])

0 commit comments

Comments
 (0)