diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-23 23:47:23 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-23 23:47:23 -0800 |
commit | 9f9a79abe0f67c8c76f377171d2e1e2bc9e152ca (patch) | |
tree | d90604bdd8b960f0f61e377b90a46d55a5e007a5 /config | |
parent | 4932accb3ff2362c01774f2d4c7a0f755435df88 (diff) | |
parent | d458e39e314455be3110a619cb614f30ee461445 (diff) | |
download | gitlab-ce-9f9a79abe0f67c8c76f377171d2e1e2bc9e152ca.tar.gz |
Merge pull request #8782 from jvanbaarsen/no-test-class-caching
Don't cache classes in tests
Diffstat (limited to 'config')
-rw-r--r-- | config/environments/test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/test.rb b/config/environments/test.rb index 25b082b98da..2d5e7addcd3 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -5,7 +5,7 @@ Gitlab::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 = true + config.cache_classes = false # Configure static asset server for tests with Cache-Control for performance config.serve_static_assets = true |