Skip to content

Commit

Permalink
remove modin df from some tests as unique and min/max are not impleme…
Browse files Browse the repository at this point in the history
…nted for it
  • Loading branch information
raisa committed Mar 18, 2024
1 parent c760ee2 commit 608508e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def test_expr_binary(df_raw: Any) -> None:
compare_dicts(result_native, expected)


@pytest.mark.parametrize("df_raw", [df_polars, df_pandas, df_mpd, df_lazy])
@pytest.mark.parametrize("df_raw", [df_polars, df_pandas, df_lazy])
def test_expr_unary(df_raw: Any) -> None:
result = (
nw.LazyFrame(df_raw)
Expand Down Expand Up @@ -311,7 +311,7 @@ def test_expr_transform(df_raw: Any) -> None:
compare_dicts(result_native, expected)


@pytest.mark.parametrize("df_raw", [df_polars, df_pandas, df_mpd, df_lazy])
@pytest.mark.parametrize("df_raw", [df_polars, df_pandas, df_lazy])
def test_expr_min_max(df_raw: Any) -> None:
df = nw.LazyFrame(df_raw)
result_min = nw.to_native(df.select(nw.min("a", "b", "z")))
Expand Down

0 comments on commit 608508e

Please sign in to comment.