Skip to content

Commit

Permalink
test: Add additional installed apps to test_settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bmtcril committed Mar 18, 2024
1 parent 9a74cce commit 96ffd66
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,25 @@
"platform_plugin_aspects",
)

SECRET_KEY = 'insecure-secret-key'

DEBUG = True

TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"APP_DIRS": False,
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth", # this is required for admin
"django.contrib.messages.context_processors.messages", # this is required for admin
],
},
}
]

###########################
# Settings for our project
EVENT_SINK_CLICKHOUSE_MODEL_CONFIG = {
"user_profile": {
"module": "common.djangoapps.student.models",
Expand All @@ -50,21 +69,6 @@
"CUSTOM_COURSES_EDX": True,
}

DEBUG = True

TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"APP_DIRS": False,
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth", # this is required for admin
"django.contrib.messages.context_processors.messages", # this is required for admin
],
},
}
]

ASPECTS_INSTRUCTOR_DASHBOARD_UUID = "test-dashboard-uuid"

SUPERSET_EXTRA_FILTERS_FORMAT = []
Expand Down

0 comments on commit 96ffd66

Please sign in to comment.