17
17
import pytest
18
18
19
19
import bigframes
20
- from bigframes .functions import _function_session as bff_session
21
- from bigframes .functions ._utils import get_python_version
22
20
import bigframes .pandas as bpd
23
21
from tests .system .utils import cleanup_function_assets
24
22
@@ -165,10 +163,6 @@ def func(x, y):
165
163
str ,
166
164
],
167
165
)
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
- )
172
166
def test_managed_function_array_output (session , scalars_dfs , dataset_id , array_dtype ):
173
167
try :
174
168
@@ -194,10 +188,6 @@ def featurize(x: int) -> list[array_dtype]: # type: ignore
194
188
)
195
189
196
190
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
- )
201
191
def test_managed_function_binop_array_output (session , scalars_dfs , dataset_id ):
202
192
try :
203
193
@@ -230,10 +220,6 @@ def func(x, y):
230
220
)
231
221
232
222
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
- )
237
223
def test_manage_function_df_apply_axis_1_array_output (session ):
238
224
bf_df = bigframes .dataframe .DataFrame (
239
225
{
0 commit comments