From: Sarah Hoffmann Date: Thu, 29 Sep 2022 08:01:49 +0000 (+0200) Subject: do not run unit test when postgis_raster is not available X-Git-Tag: v4.2.0~25^2~1 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/5877b69d51db2b0880bde6008089b52591989051 do not run unit test when postgis_raster is not available --- diff --git a/test/python/tools/test_refresh.py b/test/python/tools/test_refresh.py index 3175cb97..c6be4fe7 100644 --- a/test/python/tools/test_refresh.py +++ b/test/python/tools/test_refresh.py @@ -21,10 +21,15 @@ def test_refresh_import_secondary_importance_non_existing(dsn): assert refresh.import_secondary_importance(dsn, Path('.')) == 1 def test_refresh_import_secondary_importance_testdb(dsn, src_dir, temp_db_conn, temp_db_cursor): - temp_db_cursor.execute('CREATE EXTENSION postgis; CREATE EXTENSION postgis_raster') - assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') == 0 + temp_db_cursor.execute('CREATE EXTENSION postgis') - assert temp_db_conn.table_exists('secondary_importance') + if temp_db_conn.postgis_version_tuple()[0] < 3: + assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') > 0 + else: + temp_db_cursor.execute('CREATE EXTENSION postgis_raster') + assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') == 0 + + assert temp_db_conn.table_exists('secondary_importance') @pytest.mark.parametrize("replace", (True, False))