BigW Consortium Gitlab

test.rb 1.4 KB
Newer Older
Valery Sizov committed
1
Rails.application.configure do
gitlabhq committed
2 3 4
  # Settings specified here will take precedence over those in config/application.rb

  # The test environment is used exclusively to run your application's
Riyad Preukschas committed
5
  # test suite. You never need to work with it otherwise. Remember that
gitlabhq committed
6
  # your test database is "scratch space" for the test suite and is wiped
Riyad Preukschas committed
7
  # and recreated between test runs. Don't rely on the data there!
8
  config.cache_classes = false
gitlabhq committed
9 10

  # Configure static asset server for tests with Cache-Control for performance
Robert Speicher committed
11
  config.assets.digest = false
12
  config.serve_static_files = true
gitlabhq committed
13 14 15 16 17 18 19 20 21 22
  config.static_cache_control = "public, max-age=3600"

  # Show full error reports and disable caching
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false

  # Raise exceptions instead of rendering exception templates
  config.action_dispatch.show_exceptions = false

  # Disable request forgery protection in test environment
23
  config.action_controller.allow_forgery_protection = false
gitlabhq committed
24 25 26 27 28 29 30 31

  # Tell Action Mailer not to deliver emails to the real world.
  # The :test delivery method accumulates sent emails in the
  # ActionMailer::Base.deliveries array.
  config.action_mailer.delivery_method = :test

  # Print deprecation notices to the stderr
  config.active_support.deprecation = :stderr
32 33

  config.eager_load = false
34 35

  config.cache_store = :null_store
36 37

  config.active_job.queue_adapter = :test
gitlabhq committed
38
end