mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
42 lines
872 B
Python
42 lines
872 B
Python
"""
|
|
Alliance Auth Test Suite Django settings
|
|
|
|
Testing core packages only
|
|
"""
|
|
|
|
from allianceauth.project_template.project_name.settings.base import *
|
|
|
|
# Use nose to run all tests
|
|
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
|
|
|
|
NOSE_ARGS = [
|
|
#'--with-coverage',
|
|
#'--cover-package=',
|
|
#'--exe', # If your tests need this to be found/run, check they py files are not chmodded +x
|
|
]
|
|
|
|
# Celery configuration
|
|
CELERY_ALWAYS_EAGER = True # Forces celery to run locally for testing
|
|
|
|
INSTALLED_APPS += [
|
|
'django_nose',
|
|
]
|
|
|
|
ROOT_URLCONF = 'tests.urls'
|
|
|
|
CACHES = {
|
|
"default": {
|
|
"BACKEND": "redis_cache.RedisCache",
|
|
"LOCATION": "localhost:6379",
|
|
"OPTIONS": {
|
|
"DB": 1,
|
|
}
|
|
}
|
|
}
|
|
|
|
PASSWORD_HASHERS = [
|
|
'django.contrib.auth.hashers.MD5PasswordHasher',
|
|
]
|
|
|
|
LOGGING = None # Comment out to enable logging for debugging
|