Skip to content

Commit

Permalink
skip
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdu authored and potiuk committed Oct 1, 2024
1 parent 7308b05 commit f7a7838
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/providers/snowflake/hooks/test_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from __future__ import annotations

import json
import sys
from copy import deepcopy
from typing import TYPE_CHECKING, Any
from unittest import mock
Expand Down Expand Up @@ -612,6 +613,7 @@ def test_get_openlineage_default_schema_with_schema_set(self, mock_get_first):
assert hook_with_schema_param.get_openlineage_default_schema() == "my_schema"
mock_get_first.assert_not_called()

@pytest.mark.skipif(sys.version_info >= (3, 12), reason="Snowpark Python doesn't support Python 3.12 yet")
@mock.patch("snowflake.snowpark.Session.builder")
def test_get_snowpark_session(self, mock_session_builder):
from airflow import __version__ as airflow_version
Expand Down

0 comments on commit f7a7838

Please sign in to comment.