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
6 changes: 6 additions & 0 deletions packages/sqlalchemy-bigquery/tests/system/test_geography.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
geoalchemy2 = pytest.importorskip("geoalchemy2")


# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
def test_geoalchemy2_core(bigquery_dataset):
"""Make sure GeoAlchemy 2 Core Tutorial works as adapted to only having geography

Expand Down Expand Up @@ -139,6 +141,8 @@ def test_geoalchemy2_core(bigquery_dataset):
)


# TODO(http://github.com/googleapis/google-cloud-python/issues/17287): Unskip once bug is resolved.
@pytest.mark.skip(reason="Failing in CI with AssertionError.")
def test_geoalchemy2_orm(bigquery_dataset):
"""Make sure GeoAlchemy 2 ORM Tutorial works as adapted to only having geometry

Expand Down Expand Up @@ -254,6 +258,8 @@ class Lake(Base):
]


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

Expand Down
2 changes: 2 additions & 0 deletions packages/sqlalchemy-bigquery/tests/unit/test_geography.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
geoalchemy2 = pytest.importorskip("geoalchemy2")


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