aemo_fr/settings/aemo_tests.py

15 lines
293 B
Python

from settings.aemo import * # noqa
SECRET_KEY = 'ForAutomatedTestsC9g'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'ci_test',
'USER': 'runner',
'PASSWORD': '',
'HOST': 'postgres',
'PORT': '5432',
}
}