~canonical-ci-engineering/ubuntu-ci-services-itself/django-tastypie

« back to all changes in this revision

Viewing changes to tests/settings_gis.py

  • Committer: Package Import Robot
  • Author(s): Dominique Belhachemi
  • Date: 2013-06-22 09:17:01 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130622091701-5up9mlpckb57g1ou
Tags: 0.9.15-1
* new upstream release
* Bump Standards-Version to 3.9.4
* updated watch file, thanks to Bart Martens

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from settings import *
 
2
INSTALLED_APPS.append('gis')
 
3
 
 
4
# We just hardcode postgis here.
 
5
DATABASES = {
 
6
    'default': {
 
7
        'ENGINE': 'django.contrib.gis.db.backends.postgis',
 
8
        'NAME': DATABASE_NAME,
 
9
        'TEST_NAME': TEST_DATABASE_NAME,
 
10
    }
 
11
}
 
12
 
 
13
ROOT_URLCONF = 'gis.urls'