-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.py
54 lines (49 loc) · 1.71 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
import json
from django.conf import settings
def configure_settings():
"""
Configures settings for manage.py and for run_tests.py.
"""
if not settings.configured:
# Determine the database settings depending on if a test_db var is set in CI mode or not
test_db = os.environ.get('DB', None)
if test_db is None:
db_config = {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'data_schema',
'USER': 'postgres',
'PASSWORD': '',
'HOST': 'db',
}
elif test_db == 'postgres':
db_config = {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'data_schema',
'USER': 'postgres',
'PASSWORD': '',
'HOST': 'db',
}
else:
raise RuntimeError('Unsupported test DB {0}'.format(test_db))
# Check env for db override (used for github actions)
if os.environ.get('DB_SETTINGS'):
db_config = json.loads(os.environ.get('DB_SETTINGS'))
settings.configure(
TEST_RUNNER='django_nose.NoseTestSuiteRunner',
NOSE_ARGS=['--nocapture', '--nologcapture', '--verbosity=1'],
DATABASES={
'default': db_config,
},
MIDDLEWARE_CLASSES={},
INSTALLED_APPS=(
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'data_schema',
'data_schema.tests',
),
DEBUG=False,
DDF_FILL_NULLABLE_FIELDS=False,
SECRET_KEY='foo',
)