Skip to content

Commit 9ff3fa8

Browse files
authored
chore: disable managed function tests temporarily (#1532)
This is to give a breather to the BigQuery managed udf team to troubleshoot the quota issue.
1 parent 578081e commit 9ff3fa8

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

tests/system/large/blob/test_function.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
from bigframes import dtypes
2626
import bigframes.pandas as bpd
2727

28+
# TODO(shobs): restore these tests after the managed udf cleanup issue is
29+
# resolved in the test project
30+
pytestmark = pytest.mark.skip(
31+
reason="temporarily disable to debug managed udf cleanup in the test project"
32+
)
33+
2834

2935
@pytest.fixture(scope="function")
3036
def images_output_folder() -> Generator[str, None, None]:

tests/system/large/functions/test_managed_function.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
import bigframes.pandas as bpd
2222
from tests.system.utils import cleanup_function_assets
2323

24+
# TODO(shobs): restore these tests after the managed udf cleanup issue is
25+
# resolved in the test project
26+
pytestmark = pytest.mark.skip(
27+
reason="temporarily disable to debug managed udf cleanup in the test project"
28+
)
29+
2430
bpd.options.experiments.udf = True
2531

2632

0 commit comments

Comments
 (0)