]> git.openstreetmap.org Git - nominatim.git/commitdiff
do not run unit test when postgis_raster is not available
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 29 Sep 2022 08:01:49 +0000 (10:01 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 1 Oct 2022 09:01:49 +0000 (11:01 +0200)
test/python/tools/test_refresh.py

index 3175cb979bcb778adde0eee57a5afdda43a5516f..c6be4fe72774068e9476a79299feba0dc7e30c03 100644 (file)
@@ -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))