summaryrefslogtreecommitdiff
path: root/app/workers/ci/delete_unit_tests_worker.rb
blob: ddfc70c43d45d4220096fb037e5f37ed0626d1c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Ci
  class DeleteUnitTestsWorker
    include ApplicationWorker
    # rubocop:disable Scalability/CronWorkerContext
    # This worker does not perform work scoped to a context
    include CronjobQueue
    # rubocop:enable Scalability/CronWorkerContext

    feature_category :continuous_integration
    idempotent!

    def perform
      Ci::DeleteUnitTestsService.new.execute
    end
  end
end