Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve compatibility with dask-expr #1335

Merged
merged 6 commits into from
May 23, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update datashader/tests/test_dask.py
  • Loading branch information
hoxbro authored May 21, 2024
commit d9ba50a050d6d71489ee04bd418c111291b76f4a
2 changes: 1 addition & 1 deletion datashader/tests/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -2639,7 +2639,7 @@ def test_categorical_where_last_n(ddf, npartitions):

@pytest.mark.parametrize('ddf', ddfs)
@pytest.mark.parametrize('npartitions', [1, 2, 3, 4])
def test_series_solve(ddf, npartitions):
def test_series_reset_index(ddf, npartitions):
# Test for: https://github.com/holoviz/datashader/issues/1331
ser = ddf['i32'].reset_index()
cvs = ds.Canvas(plot_width=2, plot_height=2)
Expand Down
Loading