Skip to content

Commit

Permalink
Add dask setting to disable query-planning for now (#6149)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Mar 14, 2024
1 parent 075ae6e commit 3b4a214
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion holoviews/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,14 @@ def pytest_collection_modifyitems(config, items):


with contextlib.suppress(Exception):
# From Dask 2023.7,1 they now automatic convert strings
# From Dask 2023.7.1 they now automatically convert strings
# https://docs.dask.org/en/stable/changelog.html#v2023-7-1
# From Dask 2024.3.0 they now use `dask_expr` by default
# https://github.com/dask/dask/issues/10995
import dask

dask.config.set({"dataframe.convert-string": False})
dask.config.set({"dataframe.query-planning": False})


@pytest.fixture
Expand Down

0 comments on commit 3b4a214

Please sign in to comment.