@@ -52,6 +52,7 @@ def images_output_uris(images_output_folder: str) -> list[str]:
5252 ]
5353
5454
55+ @pytest .mark .skip (reason = "b/457416070" )
5556def test_blob_exif (
5657 bq_connection : str ,
5758 session : bigframes .Session ,
@@ -103,6 +104,7 @@ def test_blob_exif_verbose(
103104 assert content_series .dtype == dtypes .JSON_DTYPE
104105
105106
107+ @pytest .mark .skip (reason = "b/457416070" )
106108def test_blob_image_blur_to_series (
107109 images_mm_df : bpd .DataFrame ,
108110 bq_connection : str ,
@@ -136,6 +138,7 @@ def test_blob_image_blur_to_series(
136138 assert not actual .blob .size ().isna ().any ()
137139
138140
141+ @pytest .mark .skip (reason = "b/457416070" )
139142def test_blob_image_blur_to_series_verbose (
140143 images_mm_df : bpd .DataFrame ,
141144 bq_connection : str ,
@@ -163,6 +166,7 @@ def test_blob_image_blur_to_series_verbose(
163166 assert not actual .blob .size ().isna ().any ()
164167
165168
169+ @pytest .mark .skip (reason = "b/457416070" )
166170def test_blob_image_blur_to_folder (
167171 images_mm_df : bpd .DataFrame ,
168172 bq_connection : str ,
@@ -195,6 +199,7 @@ def test_blob_image_blur_to_folder(
195199 assert not actual .blob .size ().isna ().any ()
196200
197201
202+ @pytest .mark .skip (reason = "b/457416070" )
198203def test_blob_image_blur_to_folder_verbose (
199204 images_mm_df : bpd .DataFrame ,
200205 bq_connection : str ,
@@ -254,6 +259,7 @@ def test_blob_image_blur_to_bq_verbose(images_mm_df: bpd.DataFrame, bq_connectio
254259 assert content_series .dtype == dtypes .BYTES_DTYPE
255260
256261
262+ @pytest .mark .skip (reason = "b/457416070" )
257263def test_blob_image_resize_to_series (
258264 images_mm_df : bpd .DataFrame ,
259265 bq_connection : str ,
@@ -291,6 +297,7 @@ def test_blob_image_resize_to_series(
291297 assert not actual .blob .size ().isna ().any ()
292298
293299
300+ @pytest .mark .skip (reason = "b/457416070" )
294301def test_blob_image_resize_to_series_verbose (
295302 images_mm_df : bpd .DataFrame ,
296303 bq_connection : str ,
@@ -325,6 +332,7 @@ def test_blob_image_resize_to_series_verbose(
325332 assert not actual .blob .size ().isna ().any ()
326333
327334
335+ @pytest .mark .skip (reason = "b/457416070" )
328336def test_blob_image_resize_to_folder (
329337 images_mm_df : bpd .DataFrame ,
330338 bq_connection : str ,
@@ -358,6 +366,7 @@ def test_blob_image_resize_to_folder(
358366 assert not actual .blob .size ().isna ().any ()
359367
360368
369+ @pytest .mark .skip (reason = "b/457416070" )
361370def test_blob_image_resize_to_folder_verbose (
362371 images_mm_df : bpd .DataFrame ,
363372 bq_connection : str ,
@@ -420,6 +429,7 @@ def test_blob_image_resize_to_bq_verbose(
420429 assert content_series .dtype == dtypes .BYTES_DTYPE
421430
422431
432+ @pytest .mark .skip (reason = "b/457416070" )
423433def test_blob_image_normalize_to_series (
424434 images_mm_df : bpd .DataFrame ,
425435 bq_connection : str ,
@@ -492,6 +502,7 @@ def test_blob_image_normalize_to_series_verbose(
492502 assert hasattr (content_series , "blob" )
493503
494504
505+ @pytest .mark .skip (reason = "b/457416070" )
495506def test_blob_image_normalize_to_folder (
496507 images_mm_df : bpd .DataFrame ,
497508 bq_connection : str ,
@@ -598,6 +609,7 @@ def test_blob_image_normalize_to_bq_verbose(
598609 assert content_series .dtype == dtypes .BYTES_DTYPE
599610
600611
612+ @pytest .mark .skip (reason = "b/457416070" )
601613def test_blob_pdf_extract (
602614 pdf_mm_df : bpd .DataFrame ,
603615 bq_connection : str ,
@@ -633,6 +645,7 @@ def test_blob_pdf_extract(
633645 ), f"Item (verbose=False): Expected keyword '{ keyword } ' not found in extracted text. "
634646
635647
648+ @pytest .mark .skip (reason = "b/457416070" )
636649def test_blob_pdf_extract_verbose (
637650 pdf_mm_df : bpd .DataFrame ,
638651 bq_connection : str ,
@@ -670,6 +683,7 @@ def test_blob_pdf_extract_verbose(
670683 ), f"Item (verbose=True): Expected keyword '{ keyword } ' not found in extracted text. "
671684
672685
686+ @pytest .mark .skip (reason = "b/457416070" )
673687def test_blob_pdf_chunk (pdf_mm_df : bpd .DataFrame , bq_connection : str ):
674688 actual = (
675689 pdf_mm_df ["pdf" ]
@@ -709,6 +723,7 @@ def test_blob_pdf_chunk(pdf_mm_df: bpd.DataFrame, bq_connection: str):
709723 ), f"Item (verbose=False): Expected keyword '{ keyword } ' not found in extracted text. "
710724
711725
726+ @pytest .mark .skip (reason = "b/457416070" )
712727def test_blob_pdf_chunk_verbose (pdf_mm_df : bpd .DataFrame , bq_connection : str ):
713728 actual = (
714729 pdf_mm_df ["pdf" ]
0 commit comments