1717import pytest
1818
1919import bigframes
20- from bigframes .functions import _function_session as bff_session
21- from bigframes .functions ._utils import get_python_version
2220import bigframes .pandas as bpd
2321from tests .system .utils import cleanup_function_assets
2422
@@ -165,10 +163,6 @@ def func(x, y):
165163 str ,
166164 ],
167165)
168- @pytest .mark .skipif (
169- get_python_version () not in bff_session ._MANAGED_FUNC_PYTHON_VERSIONS ,
170- reason = f"Supported version: { bff_session ._MANAGED_FUNC_PYTHON_VERSIONS } " ,
171- )
172166def test_managed_function_array_output (session , scalars_dfs , dataset_id , array_dtype ):
173167 try :
174168
@@ -194,10 +188,6 @@ def featurize(x: int) -> list[array_dtype]: # type: ignore
194188 )
195189
196190
197- @pytest .mark .skipif (
198- get_python_version () not in bff_session ._MANAGED_FUNC_PYTHON_VERSIONS ,
199- reason = f"Supported version: { bff_session ._MANAGED_FUNC_PYTHON_VERSIONS } " ,
200- )
201191def test_managed_function_binop_array_output (session , scalars_dfs , dataset_id ):
202192 try :
203193
@@ -230,10 +220,6 @@ def func(x, y):
230220 )
231221
232222
233- @pytest .mark .skipif (
234- get_python_version () not in bff_session ._MANAGED_FUNC_PYTHON_VERSIONS ,
235- reason = f"Supported version: { bff_session ._MANAGED_FUNC_PYTHON_VERSIONS } " ,
236- )
237223def test_manage_function_df_apply_axis_1_array_output (session ):
238224 bf_df = bigframes .dataframe .DataFrame (
239225 {
0 commit comments