Skip to content

Commit 7e139bd

Browse files
authored
chore: remove skipif decorator in managed function large tests (#1483)
1 parent 66e137e commit 7e139bd

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

tests/system/large/functions/test_managed_function.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import pytest
1818

1919
import bigframes
20-
from bigframes.functions import _function_session as bff_session
21-
from bigframes.functions._utils import get_python_version
2220
import bigframes.pandas as bpd
2321
from 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-
)
172166
def 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-
)
201191
def 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-
)
237223
def test_manage_function_df_apply_axis_1_array_output(session):
238224
bf_df = bigframes.dataframe.DataFrame(
239225
{

0 commit comments

Comments
 (0)