39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""
|
|
This configuration is used for running jasmine tests
|
|
"""
|
|
|
|
from .test import *
|
|
from logsettings import get_logger_config
|
|
|
|
ENABLE_JASMINE = True
|
|
DEBUG = True
|
|
|
|
LOGGING = get_logger_config(TEST_ROOT / "log",
|
|
logging_env="dev",
|
|
tracking_filename="tracking.log",
|
|
dev_env=True,
|
|
debug=True,
|
|
local_loglevel='ERROR',
|
|
console_loglevel='ERROR')
|
|
|
|
PIPELINE_JS['js-test-source'] = {
|
|
'source_filenames': sum([
|
|
pipeline_group['source_filenames']
|
|
for group_name, pipeline_group
|
|
in PIPELINE_JS.items()
|
|
if group_name != 'spec'
|
|
], []),
|
|
'output_filename': 'js/cms-test-source.js'
|
|
}
|
|
|
|
PIPELINE_JS['spec'] = {
|
|
'source_filenames': sorted(rooted_glob(PROJECT_ROOT / 'static/', 'coffee/spec/**/*.coffee')),
|
|
'output_filename': 'js/cms-spec.js'
|
|
}
|
|
|
|
JASMINE_TEST_DIRECTORY = PROJECT_ROOT + '/static/coffee'
|
|
|
|
STATICFILES_DIRS.append(COMMON_ROOT / 'test' / 'phantom-jasmine' / 'lib')
|
|
|
|
INSTALLED_APPS += ('django_jasmine', )
|