Extend tox setup to include core only testing

This commit is contained in:
ErikKalkoken
2020-02-18 19:34:44 +01:00
parent efd2a5e8c5
commit 01c17d28f6
5 changed files with 71 additions and 24 deletions

View File

@@ -1,5 +1,7 @@
"""
Alliance Auth Test Suite Django settings.
Alliance Auth Test Suite Django settings
Testing all services and plug-in apps
"""
from allianceauth.project_template.project_name.settings.base import *
@@ -41,14 +43,6 @@ ROOT_URLCONF = 'tests.urls'
CACHES['default'] = {'BACKEND': 'django.core.cache.backends.db.DatabaseCache'}
#####################
# HR Configuration
#####################
# JACK_KNIFE_URL - Url for the audit page of API Jack knife
# Should seriously replace with your own.
#####################
JACK_KNIFE_URL = 'http://example.com/eveapi/audit.php'
########################
# XenForo Configuration
########################

33
tests/settings_core.py Normal file
View File

@@ -0,0 +1,33 @@
"""
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': 'django.core.cache.backends.db.DatabaseCache'}
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.MD5PasswordHasher',
]
LOGGING = None # Comment out to enable logging for debugging