Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ def add_ints(x, y):
)


@pytest.mark.flaky(retries=2, delay=30)
def test_managed_function_dataframe_apply_axis_1_array_output(
session, dataset_id, function_id
):
Expand Down Expand Up @@ -560,6 +561,7 @@ def foo(x: int) -> int:
)(foo)


@pytest.mark.flaky(retries=2, delay=30)
def test_managed_function_df_apply_axis_1(
session, dataset_id, scalars_dfs, function_id
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2360,6 +2360,7 @@ def foo_named(x: int) -> int:
)


@pytest.mark.flaky(retries=2, delay=120)
def test_df_apply_axis_1_multiple_params(session):
bf_df = bigframes.dataframe.DataFrame(
{
Expand Down Expand Up @@ -2440,6 +2441,7 @@ def foo(x, y, z):
cleanup_function_assets(foo, session.bqclient, session.cloudfunctionsclient)


@pytest.mark.flaky(retries=2, delay=120)
def test_df_apply_axis_1_multiple_params_array_output(session):
bf_df = bigframes.dataframe.DataFrame(
{
Expand Down Expand Up @@ -2524,6 +2526,7 @@ def foo(x, y, z):
cleanup_function_assets(foo, session.bqclient, session.cloudfunctionsclient)


@pytest.mark.flaky(retries=2, delay=120)
def test_df_apply_axis_1_single_param_non_series(session):
bf_df = bigframes.dataframe.DataFrame(
{
Expand Down
Loading