mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-08 20:10:17 +02:00
41 lines
934 B
Python
41 lines
934 B
Python
"""
|
|
Alliance Auth Test Suite Django settings
|
|
|
|
Testing core packages only
|
|
"""
|
|
|
|
from allianceauth.project_template.project_name.settings.base import *
|
|
|
|
# Celery configuration
|
|
CELERY_ALWAYS_EAGER = True # Forces celery to run locally for testing
|
|
|
|
|
|
ROOT_URLCONF = "tests.urls"
|
|
|
|
SITE_URL = "https://example.com"
|
|
CSRF_TRUSTED_ORIGINS = [SITE_URL]
|
|
|
|
CACHES = {
|
|
"default": {
|
|
"BACKEND": "django_redis.cache.RedisCache",
|
|
"LOCATION": "redis://127.0.0.1:6379/1",
|
|
}
|
|
}
|
|
|
|
PASSWORD_HASHERS = [
|
|
"django.contrib.auth.hashers.MD5PasswordHasher",
|
|
]
|
|
|
|
LOGGING = None # Comment out to enable logging for debugging
|
|
|
|
ALLIANCEAUTH_DASHBOARD_TASK_STATISTICS_DISABLED = True # disable for tests
|
|
|
|
|
|
##########################
|
|
# Django ESI Configuration
|
|
##########################
|
|
ESI_SSO_CLIENT_ID = "dummy"
|
|
ESI_SSO_CLIENT_SECRET = "dummy"
|
|
ESI_SSO_CALLBACK_URL = f"{SITE_URL}/sso/callback"
|
|
ESI_USER_CONTACT_EMAIL = "dummy@example.net"
|