We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2649c3 commit 6065ebfCopy full SHA for 6065ebf
tests/integ/test_datatypes.py
@@ -3,6 +3,8 @@
3
#
4
from decimal import Decimal
5
6
+import pytest
7
+
8
from snowflake.snowpark import DataFrame, Row
9
from snowflake.snowpark.functions import lit
10
from snowflake.snowpark.types import (
@@ -410,6 +412,10 @@ def test_join_basic(session):
410
412
)
411
413
414
415
+@pytest.mark.skipif(
416
+ "config.getoption('local_testing_mode', default=False)",
417
+ reason="session.sql not supported in local testing",
418
+)
419
def test_numeric_type_store_precision_and_scale(session):
420
table_name = Utils.random_table_name()
421
df = session.create_dataframe(
0 commit comments