Skip to content

Commit

Permalink
Skip test_over_calls and test_over_with_windows
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Apr 10, 2024
1 parent fddf52f commit 72dd6ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_over.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd
import pytest

from tests.utils import assert_eq
from tests.utils import assert_eq, skipif_dask_expr_enabled


def test_over_with_sorting(c, user_table_1):
Expand Down Expand Up @@ -76,6 +76,7 @@ def test_over_with_different(c, user_table_1):
assert_eq(return_df, expected_df, check_dtype=False, check_index=False)


@skipif_dask_expr_enabled()
def test_over_calls(c, user_table_1):
return_df = c.sql(
"""
Expand Down Expand Up @@ -139,6 +140,7 @@ def test_over_single_value(c, user_table_1):
assert_eq(return_df, expected_df, check_dtype=False, check_index=False)


@skipif_dask_expr_enabled()
def test_over_with_windows(c):
tmp_df = pd.DataFrame({"a": range(5)})
c.create_table("tmp", tmp_df)
Expand Down

0 comments on commit 72dd6ab

Please sign in to comment.