debian-mirror-gitlab/app/workers/ci/delete_unit_tests_worker.rb
2021-11-18 22:05:49 +05:30

20 lines
451 B
Ruby

# frozen_string_literal: true
module Ci
class DeleteUnitTestsWorker
include ApplicationWorker
data_consistency :always
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
include CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
feature_category :code_testing
idempotent!
def perform
Ci::DeleteUnitTestsService.new.execute
end
end
end