2019-07-25 01:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-29 05:41:19 -04:00
|
|
|
RSpec.configure do |config|
|
2020-05-07 05:09:51 -04:00
|
|
|
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-10-23 05:06:03 -04:00
|
|
|
# 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-07 05:09:51 -04:00
|
|
|
gitlab_sidekiq_inline { example.run }
|
2019-10-23 05:06:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
config.around(:example, :sidekiq_inline) do |example|
|
2020-05-07 05:09:51 -04:00
|
|
|
gitlab_sidekiq_inline { example.run }
|
2019-10-23 05:06:03 -04:00
|
|
|
end
|
2017-06-29 05:41:19 -04:00
|
|
|
end
|