Skip to content

Commit

Permalink
TST: skip multisurface test with arrow to avoid crash
Browse files Browse the repository at this point in the history
  • Loading branch information
theroggy committed Sep 28, 2024
1 parent 0a83d43 commit e14c68f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyogrio/tests/test_geopandas_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -1765,6 +1765,10 @@ def test_read_invalid_poly_ring(tmp_path, use_arrow, on_invalid, message):

def test_read_multisurface(multisurface_file, use_arrow):
if use_arrow:
# TODO: revisit once https://github.com/geopandas/pyogrio/issues/478
# is resolved.
pytest.skip("Shapely + GEOS 3.13 crashes in from_wkb for this case")

with pytest.raises(shapely.errors.GEOSException):
# TODO(Arrow)
# shapely fails parsing the WKB
Expand Down

0 comments on commit e14c68f

Please sign in to comment.