Skip to content

Commit

Permalink
remove pandas version predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-nkumar committed Dec 13, 2024
1 parent 834930e commit 981cce0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions tests/integ/modin/frame/test_applymap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 0 additions & 6 deletions tests/integ/modin/series/test_apply_and_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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(
Expand Down

0 comments on commit 981cce0

Please sign in to comment.