Skip to content

Commit 4d3447d

Browse files
authored
chore: skip sqlalchemy-bigquery test to unblock CI (#17288)
skip sqlalchemy-bigquery test to keep builds green. See: #17287. Releases will be blocked for `sqlalchemy-bigquery` until this test is fixed. See #17289
1 parent d7f57fc commit 4d3447d

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
geoalchemy2 = pytest.importorskip("geoalchemy2")
2323

2424

25+
# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
26+
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
2527
def test_geoalchemy2_core(bigquery_dataset):
2628
"""Make sure GeoAlchemy 2 Core Tutorial works as adapted to only having geography
2729
@@ -139,6 +141,8 @@ def test_geoalchemy2_core(bigquery_dataset):
139141
)
140142

141143

144+
# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
145+
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
142146
def test_geoalchemy2_orm(bigquery_dataset):
143147
"""Make sure GeoAlchemy 2 ORM Tutorial works as adapted to only having geometry
144148
@@ -254,6 +258,8 @@ class Lake(Base):
254258
]
255259

256260

261+
# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
262+
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
257263
def test_geoalchemy2_orm_w_relationship(bigquery_dataset):
258264
from sqlalchemy import create_engine
259265

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
geoalchemy2 = pytest.importorskip("geoalchemy2")
2525

2626

27+
# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
28+
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
2729
def test_geoalchemy2_core(faux_conn, last_query):
2830
"""Make sure GeoAlchemy 2 Core Tutorial works as adapted to only having geometry"""
2931
conn = faux_conn

0 commit comments

Comments
 (0)