summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-28 14:22:55 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-28 14:24:46 +0200
commit6435791849e9f386dc150d63c06025148698bb2d (patch)
treeaf13a564ef0a92c2fe61e6d70cd4fffb66ba66ed
parent3ba597c711734c1801b8854401db86e73f20aa27 (diff)
downloadIshtar-6435791849e9f386dc150d63c06025148698bb2d.tar.bz2
Ishtar-6435791849e9f386dc150d63c06025148698bb2d.zip
Make the use of spatialite for tests not mandatory
-rw-r--r--example_project/local_settings.py.gitlab-ci1
-rw-r--r--example_project/settings.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/example_project/local_settings.py.gitlab-ci b/example_project/local_settings.py.gitlab-ci
index 7f4bcefa1..81196b4a0 100644
--- a/example_project/local_settings.py.gitlab-ci
+++ b/example_project/local_settings.py.gitlab-ci
@@ -12,3 +12,4 @@ DATABASES = {
LOGFILE = '/tmp/ishtar.log'
PROJECT_SLUG = "CI-instance"
+USE_SPATIALITE_FOR_TESTS = False
diff --git a/example_project/settings.py b/example_project/settings.py
index 104569e29..26119451a 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -10,6 +10,7 @@ DEBUG_TOOLBAR = False
TEMPLATE_DEBUG = DEBUG
SQL_DEBUG = False
DJANGO_EXTENSIONS = False
+USE_SPATIALITE_FOR_TESTS = True
if "test" in sys.argv:
sys.path.insert(0, '..')
@@ -235,6 +236,8 @@ except ImportError, e:
if 'test' in sys.argv:
SOUTH_TESTS_MIGRATE = False
+
+if USE_SPATIALITE_FOR_TESTS:
DATABASES['default']['ENGINE'] = \
'django.contrib.gis.db.backends.spatialite'