diff --git a/tests/system/large/functions/test_managed_function.py b/tests/system/large/functions/test_managed_function.py index efab338861..0af6810fa9 100644 --- a/tests/system/large/functions/test_managed_function.py +++ b/tests/system/large/functions/test_managed_function.py @@ -17,8 +17,6 @@ import pytest import bigframes -from bigframes.functions import _function_session as bff_session -from bigframes.functions._utils import get_python_version import bigframes.pandas as bpd from tests.system.utils import cleanup_function_assets @@ -165,10 +163,6 @@ def func(x, y): str, ], ) -@pytest.mark.skipif( - get_python_version() not in bff_session._MANAGED_FUNC_PYTHON_VERSIONS, - reason=f"Supported version: {bff_session._MANAGED_FUNC_PYTHON_VERSIONS}", -) def test_managed_function_array_output(session, scalars_dfs, dataset_id, array_dtype): try: @@ -194,10 +188,6 @@ def featurize(x: int) -> list[array_dtype]: # type: ignore ) -@pytest.mark.skipif( - get_python_version() not in bff_session._MANAGED_FUNC_PYTHON_VERSIONS, - reason=f"Supported version: {bff_session._MANAGED_FUNC_PYTHON_VERSIONS}", -) def test_managed_function_binop_array_output(session, scalars_dfs, dataset_id): try: @@ -230,10 +220,6 @@ def func(x, y): ) -@pytest.mark.skipif( - get_python_version() not in bff_session._MANAGED_FUNC_PYTHON_VERSIONS, - reason=f"Supported version: {bff_session._MANAGED_FUNC_PYTHON_VERSIONS}", -) def test_manage_function_df_apply_axis_1_array_output(session): bf_df = bigframes.dataframe.DataFrame( {