diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b63811e08e182..0a7ac2325740a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -158,6 +158,7 @@ jobs: pytest pandas/tests/generic/test_generic.py --array-manager pytest pandas/tests/arithmetic/ --array-manager pytest pandas/tests/groupby/ --array-manager + pytest pandas/tests/resample/ --array-manager pytest pandas/tests/reshape/merge --array-manager # indexing subset (temporary since other tests don't pass yet) diff --git a/pandas/tests/resample/test_base.py b/pandas/tests/resample/test_base.py index bf3e6d822ab19..733a8c0aa58ec 100644 --- a/pandas/tests/resample/test_base.py +++ b/pandas/tests/resample/test_base.py @@ -3,6 +3,8 @@ import numpy as np import pytest +import pandas.util._test_decorators as td + from pandas import ( DataFrame, NaT, @@ -245,6 +247,7 @@ def test_resampler_is_iterable(series): tm.assert_series_equal(rv, gv) +@td.skip_array_manager_not_yet_implemented # TODO(ArrayManager) quantile @all_ts def test_resample_quantile(series): # GH 15023