Enabled django-compressor for javascript sanity test

By default the test did not run with the compressor on
which did load the javascript. There's no way to test errors
compressing the javascript.

Fix bug #1187576

Change-Id: I1db226ae9709ff818e8d13b7935ded66c0f6eae3
This commit is contained in:
George Peristerakis 2013-11-06 15:40:06 -05:00
parent b8ff4804e1
commit 3fd7f426a4
1 changed files with 2 additions and 1 deletions

View File

@ -118,9 +118,10 @@ HORIZON_CONFIG = {
'help_url': "http://example.com"
}
COMPRESS_ENABLED = False
COMPRESS_ENABLED = True
COMPRESS_OFFLINE = False
COMPRESS_ROOT = "/tmp/"
COMPRESS_PARSER = 'compressor.parser.HtmlParser'
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',