diff options
| author | Daniel Wiesmann <daniel.wiesmann@gmail.com> | 2016-05-27 17:43:17 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-27 17:07:26 -0400 |
| commit | 85ab56944df7f48e3a8b1734c91fd90cb41bfd2f (patch) | |
| tree | df71e1ec6ec58c1314ec3a2481af6e6537463565 /tests | |
| parent | 9985544adbdbb4ebae3a19010a0600454117a3a1 (diff) | |
[1.10.x] Refs #25588 -- Fixed GDAL dependency in spatial lookups.
Backport of 9bb1b4b7f6b79096fc7418c3b7bb0118d44c373a from master
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/gis_tests/gis_migrations/test_operations.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/gis_tests/gis_migrations/test_operations.py b/tests/gis_tests/gis_migrations/test_operations.py index aa6b13bdda..a6f89e6106 100644 --- a/tests/gis_tests/gis_migrations/test_operations.py +++ b/tests/gis_tests/gis_migrations/test_operations.py @@ -1,6 +1,9 @@ from __future__ import unicode_literals +from unittest import skipUnless + from django.contrib.gis.db.models import fields +from django.contrib.gis.gdal import HAS_GDAL from django.core.exceptions import ImproperlyConfigured from django.db import connection, migrations, models from django.db.migrations.migration import Migration @@ -114,6 +117,7 @@ class OperationTests(TransactionTestCase): self.assertSpatialIndexExists('gis_neighborhood', 'heatmap') @skipIfDBFeature('supports_raster') + @skipUnless(HAS_GDAL, 'A different error is raised if GDAL is not installed.') def test_create_raster_model_on_db_without_raster_support(self): """ Test creating a model with a raster field on a db without raster support. @@ -123,6 +127,7 @@ class OperationTests(TransactionTestCase): self.set_up_test_model(True) @skipIfDBFeature('supports_raster') + @skipUnless(HAS_GDAL, 'A different error is raised if GDAL is not installed.') def test_add_raster_field_on_db_without_raster_support(self): """ Test adding a raster field on a db without raster support. |
