mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
374 B
Ruby
14 lines
374 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
RSpec.configure do |config|
|
|
config.before :suite do
|
|
if !ENV['CI_SKIP_DB_RESET']
|
|
|
|
# Reset database to be ready for tests
|
|
Rake::Task['zammad:db:reset'].execute
|
|
|
|
# make sure that all migrations of linked packages are executed
|
|
Package::Migration.linked
|
|
end
|
|
end
|
|
end
|