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 4c23afb commit 3b28623
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/daily_modin_precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.python-version }}
cloud_provider: ${{ matrix.cloud-provider }}
PYTEST_ADDOPTS: --color=yes --tb=short --enable_cte_optimization --skip_sql_count_check
PYTEST_ADDOPTS: --color=yes --tb=short --enable_cte_optimization --skip_sql_count_check --ignore=tests/integ/modin/test_sql_counter.py
TOX_PARALLEL_NO_SPINNER: 1
shell: bash
- name: Combine coverages
Expand Down
2 changes: 2 additions & 0 deletions tests/integ/modin/frame/test_quantile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
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,6 +133,7 @@ def test_quantile_datetime_negative():


@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,
)
Expand Down

0 comments on commit 3b28623

Please sign in to comment.