From 4aaaeaf18cbe79c5053892f14a1760e41e24e331 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 17 Jun 2021 20:24:02 -0400 Subject: [PATCH] Skip tests broken on GDAL 3.3.0. --- python-geopandas.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-geopandas.spec b/python-geopandas.spec index cb616ce..0f045b1 100644 --- a/python-geopandas.spec +++ b/python-geopandas.spec @@ -56,7 +56,10 @@ BuildRequires: python3dist(matplotlib) >= 2.0.1 %check -%{pytest} -ra geopandas -m 'not web' +# Skip tests broken on GDAL 3.3.0 +# https://github.com/geopandas/geopandas/issues/1975 +%{pytest} -ra geopandas -m 'not web' \ + -k 'not test_to_file_bool[GPKG-gpkg] and not test_to_file_datetime' %files -n python3-%{srcname} @@ -70,6 +73,7 @@ BuildRequires: python3dist(matplotlib) >= 2.0.1 * Thu Jun 17 2021 Elliott Sales de Andrade - 0.9.0-2 - Update & correct dependencies - Backport patch to fix tests with Proj 8.0.1 +- Skip tests broken on GDAL 3.3.0 * Fri Jun 04 2021 Python Maint - 0.9.0-2 - Rebuilt for Python 3.10