File: postgresql_django_settings.py

package info (click to toggle)
django-dirtyfields 1.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 276 kB
  • sloc: python: 812; makefile: 168
file content (16 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Minimum files that are needed to run django test suite

SECRET_KEY = 'WE DONT CARE ABOUT IT'

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'dirtyfields_test',  # Should be the same defined in .travis.yml
        'USER': 'postgres',  # postgres user is by default created in travis-ci
        'PASSWORD': '',  # postgres user has no password on travis-ci
        'HOST': 'localhost',
        'PORT': '5432',  # default postgresql port
    }
}

INSTALLED_APPS = ('tests', )