Skip to content

Commit

Permalink
FIX ME: skip test__reduce__ for Dask
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Feb 7, 2024
1 parent 2b0fef5 commit 989f5ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modin/pandas/test/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from pandas.errors import SpecificationError

import modin.pandas as pd
from modin.config import NPartitions, StorageFormat
from modin.config import Engine, NPartitions, StorageFormat
from modin.pandas.io import to_pandas
from modin.test.test_utils import warns_that_defaulting_to_pandas
from modin.utils import get_current_execution, try_cast_to_pandas
Expand Down Expand Up @@ -4828,6 +4828,7 @@ def test_binary_numpy_universal_function_issue_6483():
)


@pytest.mark.skipif(Engine.get() == "Dask", reason="TODO: Dask failed for some reason")
def test__reduce__():
# `Series.__reduce__` will be called implicitly when lambda expressions are
# pre-processed for the distributed engine.
Expand Down

0 comments on commit 989f5ec

Please sign in to comment.