Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdu committed Jun 3, 2024
1 parent cb94605 commit fec67d4
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions tests/integ/modin/frame/test_quantile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import pytest

import snowflake.snowpark.modin.plugin # noqa: F401
from tests.integ.modin.conftest import SKIP_SQL_COUNT_CHECK
from tests.integ.modin.sql_counter import SqlCounter, sql_count_checker
from tests.integ.modin.utils import create_test_dfs, eval_snowpark_pandas_result

Expand Down Expand Up @@ -132,12 +131,8 @@ def test_quantile_datetime_negative():
snow_df.quantile(numeric_only=False)


@pytest.mark.xfail(
condition=not SKIP_SQL_COUNT_CHECK,
reason="Bug in quantile emitting large amount of queries except for small data. TODO: SNOW-1229442",
strict=True,
)
@sql_count_checker(query_count=0)
# Bug in quantile emitting large amount of queries except for small data.
# TODO: SNOW-1229442 add SQL count check after fixing the bug
def test_quantile_large():
snow_series = pd.DataFrame({"a": range(1000), "b": range(1000)})
q = np.linspace(0, 1, 16)
Expand Down

0 comments on commit fec67d4

Please sign in to comment.