Skip to content

Commit

Permalink
Skip test with GDAL 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Gillies authored and snowman2 committed Apr 20, 2020
1 parent 17258b6 commit 70b8782
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

from fiona import transform

from .conftest import requires_gdal_lt_3


@pytest.mark.parametrize(
"geom",
Expand Down Expand Up @@ -47,9 +49,10 @@
)
def test_transform_geom_with_z(geom):
"""Transforming a geom with Z succeeds"""
g2 = transform.transform_geom("epsg:4326", "epsg:3857", geom, precision=3)
transform.transform_geom("epsg:4326", "epsg:3857", geom, precision=3)


@requires_gdal_lt_3
def test_transform_geom_null_dest():
failed_geom = {
'type': 'Polygon',
Expand Down

0 comments on commit 70b8782

Please sign in to comment.