Skip to content

Commit

Permalink
Disable eager loading when running tests in CI for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Oct 11, 2023
1 parent 060df5c commit 538e32f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environments/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# this is usually not necessary, and can slow down your test suite. However, it's
# recommended that you enable it in continuous integration systems to ensure eager
# loading is working properly before deploying your code.
config.eager_load = ENV["CI"].present?
config.eager_load = false # ENV["CI"].present?

# Configure public file server for tests with Cache-Control for performance.
config.public_file_server.enabled = true
Expand Down

0 comments on commit 538e32f

Please sign in to comment.