summaryrefslogtreecommitdiff
path: root/config/environments/test.rb
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-04-20 14:15:39 +0100
committerPhil Hughes <me@iamphill.com>2017-04-20 14:15:39 +0100
commitb7b5bd4a49a212f41f08be98997c25c0ce530f97 (patch)
tree72e7b32423adf742a9d8dcbfe2608fec86be0378 /config/environments/test.rb
parent7d16537cac7eb808d8d18cd0b89475db4e4eeaaa (diff)
parent7ceb0efc6c6016e055ec6862759ff5f442551c4a (diff)
downloadgitlab-ce-b7b5bd4a49a212f41f08be98997c25c0ce530f97.tar.gz
Merge remote-tracking branch 'origin/28433-internationalise-cycle-analytics-page' into js-translations
Diffstat (limited to 'config/environments/test.rb')
-rw-r--r--config/environments/test.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/environments/test.rb b/config/environments/test.rb
index a25c5016a3b..c3b788c038e 100644
--- a/config/environments/test.rb
+++ b/config/environments/test.rb
@@ -8,7 +8,12 @@ Rails.application.configure do
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
- config.cache_classes = false
+
+ # Enabling caching of classes slows start-up time because all controllers
+ # are loaded at initalization, but it reduces memory and load because files
+ # are not reloaded with every request. For example, caching is not necessary
+ # for loading database migrations but useful for handling Knapsack specs.
+ config.cache_classes = ENV['CACHE_CLASSES'] == 'true'
# Configure static asset server for tests with Cache-Control for performance
config.assets.digest = false