File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ jobs:
158158 pytest pandas/tests/generic/test_generic.py --array-manager
159159 pytest pandas/tests/arithmetic/ --array-manager
160160 pytest pandas/tests/groupby/ --array-manager
161+ pytest pandas/tests/resample/ --array-manager
161162 pytest pandas/tests/reshape/merge --array-manager
162163
163164 # indexing subset (temporary since other tests don't pass yet)
Original file line number Diff line number Diff line change 33import numpy as np
44import pytest
55
6+ import pandas .util ._test_decorators as td
7+
68from pandas import (
79 DataFrame ,
810 NaT ,
@@ -245,6 +247,7 @@ def test_resampler_is_iterable(series):
245247 tm .assert_series_equal (rv , gv )
246248
247249
250+ @td .skip_array_manager_not_yet_implemented # TODO(ArrayManager) quantile
248251@all_ts
249252def test_resample_quantile (series ):
250253 # GH 15023
You can’t perform that action at this time.
0 commit comments