diff --git a/tests/integ/modin/frame/test_applymap.py b/tests/integ/modin/frame/test_applymap.py index 3e7f06af70e..d0fd918f9e0 100644 --- a/tests/integ/modin/frame/test_applymap.py +++ b/tests/integ/modin/frame/test_applymap.py @@ -15,18 +15,12 @@ create_func_with_return_type_hint, ) from tests.integ.modin.utils import ( - PANDAS_VERSION_PREDICATE, assert_snowpark_pandas_equal_to_pandas, create_test_dfs, eval_snowpark_pandas_result, ) from tests.integ.utils.sql_counter import SqlCounter, sql_count_checker -pytestmark = pytest.mark.skipif( - PANDAS_VERSION_PREDICATE, - reason="SNOW-1739034: tests with UDFs/sprocs cannot run without pandas 2.2.3 in Snowflake anaconda", -) - @pytest.mark.parametrize("data,func,return_type", BASIC_DATA_FUNC_RETURN_TYPE_MAP) @sql_count_checker(query_count=7, udf_count=1) diff --git a/tests/integ/modin/series/test_apply_and_map.py b/tests/integ/modin/series/test_apply_and_map.py index 81a64bee99a..88990192f24 100644 --- a/tests/integ/modin/series/test_apply_and_map.py +++ b/tests/integ/modin/series/test_apply_and_map.py @@ -23,7 +23,6 @@ from snowflake.snowpark.functions import udf from snowflake.snowpark.types import DoubleType, StringType, VariantType from tests.integ.modin.utils import ( - PANDAS_VERSION_PREDICATE, ColumnSchema, assert_snowpark_pandas_equal_to_pandas, assert_snowpark_pandas_equals_to_pandas_without_dtypecheck, @@ -33,11 +32,6 @@ ) from tests.integ.utils.sql_counter import SqlCounter, sql_count_checker -pytestmark = pytest.mark.skipif( - PANDAS_VERSION_PREDICATE, - reason="SNOW-1739034: tests with UDFs/sprocs cannot run without pandas 2.2.3 in Snowflake anaconda", -) - BASIC_DATA_FUNC_RETURN_TYPE_MAP = [ ([1, 2, 3, None], lambda x: x + 1, "int"), param(