Skip to content
Merged
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
2 changes: 2 additions & 0 deletions tests/system/large/blob/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
from bigframes import dtypes
import bigframes.pandas as bpd

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


@pytest.fixture(scope="function")
def images_output_folder() -> Generator[str, None, None]:
Expand Down
3 changes: 3 additions & 0 deletions tests/system/small/blob/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
import bigframes
import bigframes.pandas as bpd

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


idisplay = pytest.importorskip("IPython.display")


Expand Down
3 changes: 3 additions & 0 deletions tests/system/small/blob/test_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@
# limitations under the License.

import pandas as pd
import pytest

import bigframes.dtypes as dtypes
import bigframes.pandas as bpd

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


def test_blob_uri(images_uris: list[str], images_mm_df: bpd.DataFrame):
actual = images_mm_df["blob_col"].blob.uri().to_pandas()
Expand Down
4 changes: 4 additions & 0 deletions tests/system/small/blob/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest

import bigframes.pandas as bpd

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


def test_blob_read_url(images_mm_df: bpd.DataFrame):
urls = images_mm_df["blob_col"].blob.read_url()
Expand Down
Loading