-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.py
60 lines (55 loc) · 2.04 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
55
56
57
58
59
60
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': 'django_restraint',
'USER': os.environ.get('DBUSER', 'ambition_dev'),
'PASSWORD': os.environ.get('DBPASS', 'ambition_dev'),
'HOST': os.environ.get('DBHOST', 'localhost')
}
elif test_db == 'postgres':
db_config = {
'ENGINE': 'django.db.backends.postgresql',
'USER': 'postgres',
'NAME': 'restraint',
}
elif test_db == 'sqlite':
db_config = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'restraint',
}
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'],
MIDDLEWARE_CLASSES=(),
DATABASES={
'default': db_config,
},
INSTALLED_APPS=(
'django.contrib.auth',
'django.contrib.contenttypes',
'restraint',
'restraint.tests',
),
ROOT_URLCONF='restraint.urls',
DEBUG=False,
SECRET_KEY='12345',
DEFAULT_AUTO_FIELD='django.db.models.AutoField',
RESTRAINT_CONFIGURATION=(
'restraint.tests.configuration.get_configuration'
)
)