-
Notifications
You must be signed in to change notification settings - Fork 85
/
runtests.py
149 lines (139 loc) · 4.39 KB
/
runtests.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
"""
Standalone test runner for Opal
"""
import os
import sys
from django.conf import settings
PROJECT_PATH = os.path.join(
os.path.realpath(os.path.dirname(__file__)), "opal"
)
test_settings_config = dict(
DEBUG=True,
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
},
PROJECT_PATH=PROJECT_PATH,
ROOT_URLCONF='opal.urls',
USE_TZ=True,
OPAL_EXTRA_APPLICATION='',
DATE_FORMAT='d/m/Y',
DATE_INPUT_FORMATS=['%d/%m/%Y'],
DATETIME_FORMAT='d/m/Y H:i:s',
DATETIME_INPUT_FORMATS=['%d/%m/%Y %H:%M:%S'],
TIME_FORMAT = "H:i:s",
STATIC_URL='/assets/',
COMPRESS_ROOT='/tmp/',
TIME_ZONE='UTC',
OPAL_BRAND_NAME = 'opal',
INTEGRATING=False,
DEFAULT_DOMAIN='localhost',
MIDDLEWARE=(
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'opal.middleware.AngularCSRFRename',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'opal.middleware.DjangoReversionWorkaround',
'reversion.middleware.RevisionMiddleware'
),
INSTALLED_APPS=(
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.staticfiles',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.admin',
'reversion',
'compressor',
'django_celery_results',
'opal',
'opal.tests',
'opal.core.search',
'opal.core.pathway.tests.pathway_test',
'opal.core.pathway',
'opal.core.signals'
),
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.request',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages',
'opal.context_processors.settings',
'opal.context_processors.models'
],
# ... some options here ...
},
},
],
CELERY_TASK_ALWAYS_EAGER=True,
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'opal.core.log.ConfidentialEmailer'
},
},
'loggers': {
'django': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
},
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.TokenAuthentication',
'rest_framework.authentication.SessionAuthentication',
)
}
)
if os.environ.get('GITHUB_WORKFLOW') and not os.environ.get('RUNNER_OS') == 'Windows':
test_settings_config["DATABASES"] = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'ci_db_test',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': 'localhost',
}
}
settings.configure(**test_settings_config)
from opal.tests import dummy_opal_application # NOQA
import django
django.setup()
from opal.core import celery
try:
sys.argv.remove('--failfast')
failfast = True
except ValueError:
failfast = False
from django.test.runner import DiscoverRunner
test_runner = DiscoverRunner(verbosity=1, failfast=failfast)
if len(sys.argv) == 2:
failures = test_runner.run_tests([sys.argv[-1], ])
else:
failures = test_runner.run_tests(['opal', ])
if failures:
sys.exit(bool(failures))