Created
November 10, 2017 19:31
-
-
Save antonioiksi/86bf65ebaa95d107a3ef2817d0d882b7 to your computer and use it in GitHub Desktop.
add 'TEST' into settings.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.postgresql_psycopg2', | |
'NAME': 'user171030', | |
'USER': 'user171030', | |
'PASSWORD': 'user171030', | |
'HOST': 'localhost', | |
'PORT': '5432', | |
# for testing views | |
'TEST': { | |
'NAME': 'backend_test', | |
}, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment