From 690368ff3aeba96e0618df304ebcbd8deed34d5b Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Fri, 26 Feb 2021 17:53:14 +0100 Subject: [PATCH 1/2] [ArrayManager] TST: resample tests --- .github/workflows/ci.yml | 1 + pandas/tests/resample/test_base.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb9753fcea65..009c0a945909d 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/aggregate/ --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 From d942af0472286ecfa557dc7de6581452393ac915 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 1 Mar 2021 13:23:32 +0100 Subject: [PATCH 2/2] trigger ci