Skip to content

Commit

Permalink
comment out test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Aug 12, 2024
1 parent 3f3f6da commit 2fcff3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions python/dask_cudf/dask_cudf/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def last(self, split_every=None, split_out=1):
@_deprecate_shuffle_kwarg
@_dask_cudf_performance_tracking
def aggregate(
self, arg, split_every=None, split_out=1, shuffle_method=None, **kwargs
self, arg, split_every=None, split_out=1, shuffle_method=None
):
if arg == "size":
return self.size()
Expand Down Expand Up @@ -341,7 +341,7 @@ def last(self, split_every=None, split_out=1):
@_deprecate_shuffle_kwarg
@_dask_cudf_performance_tracking
def aggregate(
self, arg, split_every=None, split_out=1, shuffle_method=None, **kwargs
self, arg, split_every=None, split_out=1, shuffle_method=None
):
if arg == "size":
return self.size()
Expand Down
12 changes: 6 additions & 6 deletions python/dask_cudf/dask_cudf/tests/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,12 +778,12 @@ def test_groupby_nested_dict(func):
"func",
[
lambda df: df.groupby(["x", "y"]).min(),
pytest.param(
lambda df: df.groupby(["x", "y"]).agg("min"),
marks=pytest.mark.skip(
reason="https://github.com/dask/dask/issues/9093"
),
),
# pytest.param(
# lambda df: df.groupby(["x", "y"]).agg("min"),
# marks=pytest.mark.skip(
# reason="https://github.com/dask/dask/issues/9093"
# ),
# ),
lambda df: df.groupby(["x", "y"]).y.min(),
lambda df: df.groupby(["x", "y"]).y.agg("min"),
],
Expand Down

0 comments on commit 2fcff3a

Please sign in to comment.