From 76e6163cc6dec630c4ecab9d878eaf56d28b7d9d Mon Sep 17 00:00:00 2001 From: Shobhit Singh Date: Mon, 24 Mar 2025 22:34:35 +0000 Subject: [PATCH] chore: disable managed function tests temporarily This is to give a breather to the BigQuery managed udf team to troubleshoot the quota issue. --- tests/system/large/blob/test_function.py | 6 ++++++ tests/system/large/functions/test_managed_function.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/tests/system/large/blob/test_function.py b/tests/system/large/blob/test_function.py index dfdbbffede..588d9b3321 100644 --- a/tests/system/large/blob/test_function.py +++ b/tests/system/large/blob/test_function.py @@ -25,6 +25,12 @@ from bigframes import dtypes import bigframes.pandas as bpd +# TODO(shobs): restore these tests after the managed udf cleanup issue is +# resolved in the test project +pytestmark = pytest.mark.skip( + reason="temporarily disable to debug managed udf cleanup in the test project" +) + @pytest.fixture(scope="function") def images_output_folder() -> Generator[str, None, None]: diff --git a/tests/system/large/functions/test_managed_function.py b/tests/system/large/functions/test_managed_function.py index 7c8c74e005..7001736bb2 100644 --- a/tests/system/large/functions/test_managed_function.py +++ b/tests/system/large/functions/test_managed_function.py @@ -21,6 +21,12 @@ import bigframes.pandas as bpd from tests.system.utils import cleanup_function_assets +# TODO(shobs): restore these tests after the managed udf cleanup issue is +# resolved in the test project +pytestmark = pytest.mark.skip( + reason="temporarily disable to debug managed udf cleanup in the test project" +) + bpd.options.experiments.udf = True