Skip to content

Commit 80d4413

Browse files
committed
test: skip blob test
1 parent e91536c commit 80d4413

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

tests/system/large/blob/test_function.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
from bigframes import dtypes
2727
import bigframes.pandas as bpd
2828

29+
pytest.skip("Skipping blob tests due to b/481790217", allow_module_level=True)
30+
2931

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

tests/system/small/blob/test_io.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
import bigframes
2121
import bigframes.pandas as bpd
2222

23+
pytest.skip("Skipping blob tests due to b/481790217", allow_module_level=True)
24+
25+
2326
idisplay = pytest.importorskip("IPython.display")
2427

2528

tests/system/small/blob/test_properties.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@
1313
# limitations under the License.
1414

1515
import pandas as pd
16+
import pytest
1617

1718
import bigframes.dtypes as dtypes
1819
import bigframes.pandas as bpd
1920

21+
pytest.skip("Skipping blob tests due to b/481790217", allow_module_level=True)
22+
2023

2124
def test_blob_uri(images_uris: list[str], images_mm_df: bpd.DataFrame):
2225
actual = images_mm_df["blob_col"].blob.uri().to_pandas()

tests/system/small/blob/test_urls.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import pytest
16+
1517
import bigframes.pandas as bpd
1618

19+
pytest.skip("Skipping blob tests due to b/481790217", allow_module_level=True)
20+
1721

1822
def test_blob_read_url(images_mm_df: bpd.DataFrame):
1923
urls = images_mm_df["blob_col"].blob.read_url()

0 commit comments

Comments
 (0)