mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-04 15:20:27 +00:00
TEST_NAME must differ from database name
This commit is contained in:
parent
a8eacc2f22
commit
bf19446cbd
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ DATABASES = {
|
|||
'default': {
|
||||
'ENGINE': os.environ.get('DATABASE_ENGINE', 'django.db.backends.postgresql_psycopg2'),
|
||||
'NAME': os.environ.get('DATABASE_NAME', 'wagtaildemo'),
|
||||
'TEST_NAME': os.environ.get('DATABASE_NAME', 'wagtaildemo'),
|
||||
'TEST_NAME': os.environ.get('DATABASE_NAME', 'test_wagtaildemo'),
|
||||
'USER': os.environ.get('DATABASE_USER', 'postgres'),
|
||||
'PASSWORD': os.environ.get('DATABASE_PASS', None),
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue