File tree Expand file tree Collapse file tree
packages/sqlalchemy-bigquery/tests/system Expand file tree Collapse file tree Original file line number Diff line number Diff 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
257261def 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 } " )
You can’t perform that action at this time.
0 commit comments