Skip to content

Commit

Permalink
test(bigquery): skip geospatial execution test when geopandas not ins…
Browse files Browse the repository at this point in the history
…talled
  • Loading branch information
cpcloud committed Feb 12, 2024
1 parent ae3309f commit cf8c271
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibis/backends/bigquery/tests/system/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,8 @@ def test_create_table_bignumeric(con, temp_table):


def test_geography_table(con, temp_table):
pytest.importorskip("geopandas")

schema = ibis.schema({"col1": dt.GeoSpatial(geotype="geography", srid=4326)})
temporary_table = con.create_table(temp_table, schema=schema)
con.raw_sql(
Expand Down

0 comments on commit cf8c271

Please sign in to comment.