From bc3e3b6934cdf2bd68966682d910379aae846e46 Mon Sep 17 00:00:00 2001 From: Thai Tran Date: Fri, 26 Jun 2015 13:03:38 -0700 Subject: [PATCH] Turning off offline compression for integration test We have COMPRESS_OFFLINE disabled by default in our tests in horizon, we need to do the same for dashboard. Refer to bug for detailed explanation. Change-Id: Ib8480c3a91e6c06fc5b5ad0c08df88aada774b33 Closes-Bug: #1469293 --- openstack_dashboard/test/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openstack_dashboard/test/settings.py b/openstack_dashboard/test/settings.py index 16f195b887..3ce08c33b5 100644 --- a/openstack_dashboard/test/settings.py +++ b/openstack_dashboard/test/settings.py @@ -34,6 +34,8 @@ TEMPLATE_CONTEXT_PROCESSORS += ( 'openstack_dashboard.context_processors.openstack', ) +COMPRESS_OFFLINE = False + INSTALLED_APPS = ( 'django.contrib.contenttypes', 'django.contrib.auth',