db_initial_state.rb 374 B

1234567891011121314
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. RSpec.configure do |config|
  3. config.before :suite do
  4. if !ENV['CI_SKIP_DB_RESET']
  5. # Reset database to be ready for tests
  6. Rake::Task['zammad:db:reset'].execute
  7. # make sure that all migrations of linked packages are executed
  8. Package::Migration.linked
  9. end
  10. end
  11. end