Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1859140: Skip Cortex apply tests for Jenkins #2764

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/integ/modin/test_apply_snowpark_python_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def test_apply_snowpark_python_function_not_implemented():
pd.DataFrame({"a": [1, 2, 3]}).apply(asc, args=(1, 2))


@pytest.mark.skip("SNOW-1859087 snowflake.cortex.summarize SSL error")
sfc-gh-lmukhopadhyay marked this conversation as resolved.
Show resolved Hide resolved
def test_apply_snowflake_cortex_summarize(session):
from snowflake.snowpark.functions import snowflake_cortex_summarize

Expand All @@ -95,6 +96,7 @@ def test_apply_snowflake_cortex_summarize(session):
assert 0 < len(summary) < len(content)


@pytest.mark.skip("SNOW-1859087 snowflake.cortex.sentiment SSL error")
def test_apply_snowflake_cortex_sentiment(session):
from snowflake.snowpark.functions import snowflake_cortex_sentiment

Expand Down
4 changes: 3 additions & 1 deletion tests/integ/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -2273,6 +2273,7 @@ def test_ln(session):
"config.getoption('local_testing_mode', default=False)",
reason="FEAT: snowflake_cortex functions not supported",
)
@pytest.mark.skip("SNOW-1859087 snowflake.cortex.sentiment SSL error")
def test_snowflake_cortex_summarize(session):
# TODO: SNOW-1758914 snowflake.cortex.summarize error on GCP
if session.connection.host == "sfctest0.us-central1.gcp.snowflakecomputing.com":
Expand Down Expand Up @@ -2312,7 +2313,8 @@ def test_snowflake_cortex_summarize(session):
"config.getoption('local_testing_mode', default=False)",
reason="FEAT: snowflake_cortex functions not supported",
)
def test_apply_snowflake_cortex_sentiment(session):
@pytest.mark.skip("SNOW-1859087 snowflake.cortex.sentiment SSL error")
def test_snowflake_cortex_sentiment(session):
# TODO: SNOW-1758914 snowflake.cortex.sentiment error on GCP
if session.connection.host == "sfctest0.us-central1.gcp.snowflakecomputing.com":
return
Expand Down
Loading