Skip to content

Commit e4f4dde

Browse files
committed
fixing system-tests
1 parent ce8507c commit e4f4dde

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/system/small/operations/test_strings.py

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import re
1616

17+
import packaging.version
1718
import pandas as pd
1819
import pyarrow as pa
1920
import pytest
@@ -633,6 +634,9 @@ def test_getitem_w_array(index):
633634

634635

635636
def test_getitem_w_struct_array():
637+
if packaging.version.Version(pd.__version__) <= packaging.version.Version("1.5.0"):
638+
pytest.skip("https://github.com/googleapis/python-bigquery/issues/1992")
639+
636640
pa_struct = pa.struct(
637641
[
638642
("name", pa.string()),

0 commit comments

Comments
 (0)