Skip to content

Commit 6065ebf

Browse files
committed
add private var in numeric type and test
1 parent d2649c3 commit 6065ebf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integ/test_datatypes.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#
44
from decimal import Decimal
55

6+
import pytest
7+
68
from snowflake.snowpark import DataFrame, Row
79
from snowflake.snowpark.functions import lit
810
from snowflake.snowpark.types import (
@@ -410,6 +412,10 @@ def test_join_basic(session):
410412
)
411413

412414

415+
@pytest.mark.skipif(
416+
"config.getoption('local_testing_mode', default=False)",
417+
reason="session.sql not supported in local testing",
418+
)
413419
def test_numeric_type_store_precision_and_scale(session):
414420
table_name = Utils.random_table_name()
415421
df = session.create_dataframe(

0 commit comments

Comments
 (0)