File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ jobs:
158
158
pytest pandas/tests/generic/test_generic.py --array-manager
159
159
pytest pandas/tests/arithmetic/ --array-manager
160
160
pytest pandas/tests/groupby/ --array-manager
161
+ pytest pandas/tests/resample/ --array-manager
161
162
pytest pandas/tests/reshape/merge --array-manager
162
163
163
164
# indexing subset (temporary since other tests don't pass yet)
Original file line number Diff line number Diff line change 3
3
import numpy as np
4
4
import pytest
5
5
6
+ import pandas .util ._test_decorators as td
7
+
6
8
from pandas import (
7
9
DataFrame ,
8
10
NaT ,
@@ -245,6 +247,7 @@ def test_resampler_is_iterable(series):
245
247
tm .assert_series_equal (rv , gv )
246
248
247
249
250
+ @td .skip_array_manager_not_yet_implemented # TODO(ArrayManager) quantile
248
251
@all_ts
249
252
def test_resample_quantile (series ):
250
253
# GH 15023
You can’t perform that action at this time.
0 commit comments