Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion distributed/tests/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def test_dataframe_groupby_tasks(loop):
assert_equal(a, b.compute(scheduler='sync').sort_index())
assert not any('partd' in k[0] for k in b.dask)

with pytest.raises(NotImplementedError):
with pytest.raises((NotImplementedError, ValueError)):
ddf.groupby(ddf[['A', 'B']]).apply(len, meta=int)

a = df.groupby(['A', 'B']).apply(len)
Expand Down