Skip to content

Commit 01770d1

Browse files
[ArrayManager] TST: resample tests (#40085)
1 parent 78ce1b4 commit 01770d1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff 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)

pandas/tests/resample/test_base.py

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import numpy as np
44
import pytest
55

6+
import pandas.util._test_decorators as td
7+
68
from 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
249252
def test_resample_quantile(series):
250253
# GH 15023

0 commit comments

Comments
 (0)