Commit 428ba0dc authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'bvl-specify-testing-feature-category-on-workers' into 'master'

Add code testing to some workers

See merge request gitlab-org/gitlab!51449
parents 9059d8f3 1528869a
...@@ -1094,7 +1094,7 @@ ...@@ -1094,7 +1094,7 @@
:idempotent: true :idempotent: true
:tags: [] :tags: []
- :name: pipeline_background:ci_daily_build_group_report_results - :name: pipeline_background:ci_daily_build_group_report_results
:feature_category: :continuous_integration :feature_category: :code_testing
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
...@@ -1102,7 +1102,7 @@ ...@@ -1102,7 +1102,7 @@
:idempotent: true :idempotent: true
:tags: [] :tags: []
- :name: pipeline_background:ci_pipeline_artifacts_coverage_report - :name: pipeline_background:ci_pipeline_artifacts_coverage_report
:feature_category: :continuous_integration :feature_category: :code_testing
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
......
...@@ -5,6 +5,8 @@ module Ci ...@@ -5,6 +5,8 @@ module Ci
include ApplicationWorker include ApplicationWorker
include PipelineBackgroundQueue include PipelineBackgroundQueue
feature_category :code_testing
idempotent! idempotent!
def perform(pipeline_id) def perform(pipeline_id)
......
...@@ -6,6 +6,8 @@ module Ci ...@@ -6,6 +6,8 @@ module Ci
include ApplicationWorker include ApplicationWorker
include PipelineBackgroundQueue include PipelineBackgroundQueue
feature_category :code_testing
idempotent! idempotent!
def perform(pipeline_id) def perform(pipeline_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment