Skip to content

Commit

Permalink
tests: skip removed pandas methods in agg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Sep 18, 2023
1 parent d0b6381 commit fbff8a8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions siuba/tests/test_dply_series_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ def test_pandas_grouped_frame_fast_mutate(entry):


def test_frame_summarize(skip_backend, backend, agg_entry):
skip_if_removed(agg_entry)

entry = agg_entry

do_test_missing_implementation(entry, backend)
Expand Down Expand Up @@ -371,6 +373,9 @@ def test_frame_summarize(skip_backend, backend, agg_entry):

def test_pandas_grouped_frame_fast_summarize(agg_entry):
from siuba.experimental.pd_groups.dialect import fast_summarize, DataFrameGroupBy

skip_if_removed(agg_entry)

gdf = get_data(agg_entry, DATA).groupby('g')

# Execute summarize ----------------------------------------------------------
Expand Down

0 comments on commit fbff8a8

Please sign in to comment.