Skip to content

Commit 96dcf15

Browse files
committed
See #17287
1 parent 02755f3 commit 96dcf15

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

packages/sqlalchemy-bigquery/tests/system/test_geography.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def test_geoalchemy2_core(bigquery_dataset):
3131
3232
- Bigquery doesn't have ST_BUFFER
3333
"""
34-
34+
pytest.skip(
35+
"Test is skipped due to https://github.com/googleapis/google-cloud-python/issues/17287"
36+
)
3537
# Connect to the DB
3638

3739
from sqlalchemy import create_engine
@@ -144,7 +146,9 @@ def test_geoalchemy2_orm(bigquery_dataset):
144146
145147
https://geoalchemy-2.readthedocs.io/en/latest/orm_tutorial.html
146148
"""
147-
149+
pytest.skip(
150+
"Test is skipped due to https://github.com/googleapis/google-cloud-python/issues/17287"
151+
)
148152
# Connect to the DB
149153

150154
from sqlalchemy import create_engine
@@ -255,6 +259,9 @@ class Lake(Base):
255259

256260

257261
def test_geoalchemy2_orm_w_relationship(bigquery_dataset):
262+
pytest.skip(
263+
"Test is skipped due to https://github.com/googleapis/google-cloud-python/issues/17287"
264+
)
258265
from sqlalchemy import create_engine
259266

260267
engine = create_engine(f"bigquery:///{bigquery_dataset}")

0 commit comments

Comments
 (0)