Skip to content

Commit

Permalink
test(postgres): enable passing geospatial tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Feb 18, 2024
1 parent 8e9c258 commit 8f47c69
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions ibis/backends/postgres/tests/test_geospatial.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,7 @@ def test_literal_geospatial_explicit(con, expr, snapshot):
shp_polygon_0,
shp_multipolygon_0,
shp_multilinestring_0,
param(
shp_multipoint_0,
marks=pytest.mark.xfail(
raises=AssertionError,
reason="Bug-fix change in GEOS 3.12 see shapely issue #1992",
),
),
shp_multipoint_0,
],
)
def test_literal_geospatial_inferred(con, shp, snapshot):
Expand Down Expand Up @@ -393,15 +387,7 @@ def test_geo_dataframe(geotable):
id="polygon_single",
),
# Multipart geometries (2D)
param(
"multipoint",
((10, 40), (40, 30), (20, 20), (30, 10)),
id="multipoint",
marks=pytest.mark.xfail(
raises=AssertionError,
reason="Bug-fix change in GEOS 3.12 see shapely issue #1992",
),
),
param("multipoint", ((10, 40), (40, 30), (20, 20), (30, 10)), id="multipoint"),
param(
"multilinestring",
(((10, 10), (20, 20), (10, 40)), ((40, 40), (30, 30), (40, 20), (30, 10))),
Expand Down

0 comments on commit 8f47c69

Please sign in to comment.