From 5877b69d51db2b0880bde6008089b52591989051 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Thu, 29 Sep 2022 10:01:49 +0200 Subject: [PATCH] do not run unit test when postgis_raster is not available --- test/python/tools/test_refresh.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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)) -- 2.39.5