diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 15:18:46 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 15:18:46 +0200 |
commit | c5571208a3d7a50d24226132d6ff77f8edd03921 (patch) | |
tree | c9b25878dcd6baede613f2034cad1ac66a877d56 | |
parent | c07c7fce2cecd4295894ca78085a473aaba5a13a (diff) | |
download | Ishtar-c5571208a3d7a50d24226132d6ff77f8edd03921.tar.bz2 Ishtar-c5571208a3d7a50d24226132d6ff77f8edd03921.zip |
Deactivate sqlite for tests
-rw-r--r-- | example_project/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index eaa1fb7f5..795629e44 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -240,9 +240,9 @@ except ImportError, e: TESTING = sys.argv[1:2] == ['test'] -if TESTING and USE_SPATIALITE_FOR_TESTS: - DATABASES['default']['ENGINE'] = \ - 'django.contrib.gis.db.backends.spatialite' +# if TESTING and USE_SPATIALITE_FOR_TESTS: +# DATABASES['default']['ENGINE'] = \ +# 'django.contrib.gis.db.backends.spatialite' PROJECT_SLUG = locals().get('PROJECT_SLUG', 'default') |