Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions tests/integ/datasource/test_databricks.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def test_double_quoted_column_databricks(session, custom_schema):
[("table", TEST_TABLE_NAME), ("query", f"(SELECT * FROM {TEST_TABLE_NAME})")],
)
@pytest.mark.udf
@pytest.mark.skipif(
sys.version_info[:2] == (3, 13), reason="driver not supported in python 3.13"
)
def test_udtf_ingestion_databricks(session, input_type, input_value, caplog):
# we define here to avoid test_databricks.py to be pickled and unpickled in UDTF
def local_create_databricks_connection():
Expand Down
4 changes: 4 additions & 0 deletions tests/integ/datasource/test_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
import logging
import math
import sys
from decimal import Decimal

import pytest
Expand Down Expand Up @@ -227,6 +228,9 @@ def test_infer_type_from_data(data, number_of_columns, expected_result):


@pytest.mark.udf
@pytest.mark.skipif(
sys.version_info[:2] == (3, 13), reason="driver not supported in python 3.13"
)
def test_udtf_ingestion_mysql(session, caplog):
from tests.parameters import MYSQL_CONNECTION_PARAMETERS

Expand Down
5 changes: 5 additions & 0 deletions tests/integ/datasource/test_oracledb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import logging
import math
import sys

import pytest

from snowflake.snowpark import Row
Expand Down Expand Up @@ -153,6 +155,9 @@ def test_oracledb_driver_coverage(caplog):


@pytest.mark.udf
@pytest.mark.skipif(
sys.version_info[:2] == (3, 13), reason="driver not supported in python 3.13"
)
def test_udtf_ingestion_oracledb(session):
from tests.parameters import ORACLEDB_CONNECTION_PARAMETERS

Expand Down
4 changes: 4 additions & 0 deletions tests/integ/datasource/test_postgres.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
#
import sys

import pytest

Expand Down Expand Up @@ -149,6 +150,9 @@ def test_unicode_column_name_postgres(session, custom_schema):
],
)
@pytest.mark.udf
@pytest.mark.skipif(
sys.version_info[:2] == (3, 13), reason="driver not supported in python 3.13"
)
def test_udtf_ingestion_postgres(session, input_type, input_value, caplog):
from tests.parameters import POSTGRES_CONNECTION_PARAMETERS

Expand Down
Loading