gitlab-org--gitlab-foss/spec/rake_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
363 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
require 'rake'
RSpec.configure do |config|
config.include RakeHelpers
config.before(:all) do
Rake.application.rake_require 'tasks/gitlab/helpers'
Rake::Task.define_task :environment
end
config.after(:all, type: :task) do
delete_from_all_tables!(except: deletion_except_tables)
end
end