2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
RSpec.configure do |config|
|
2020-05-24 23:13:21 +05:30
|
|
|
def gitlab_sidekiq_inline(&block)
|
|
|
|
# We need to cleanup the queues before running jobs in specs because the
|
|
|
|
# middleware might have written to redis
|
|
|
|
redis_queues_cleanup!
|
|
|
|
Sidekiq::Testing.inline!(&block)
|
|
|
|
ensure
|
|
|
|
redis_queues_cleanup!
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
# As we'll review the examples with this tag, we should either:
|
|
|
|
# - fix the example to not require Sidekiq inline mode (and remove this tag)
|
|
|
|
# - explicitly keep the inline mode and change the tag for `:sidekiq_inline` instead
|
|
|
|
config.around(:example, :sidekiq_might_not_need_inline) do |example|
|
2020-05-24 23:13:21 +05:30
|
|
|
gitlab_sidekiq_inline { example.run }
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
config.around(:example, :sidekiq_inline) do |example|
|
2020-05-24 23:13:21 +05:30
|
|
|
gitlab_sidekiq_inline { example.run }
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|