summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/test_stage.rb
blob: 7e59745ffef4df7dc2952e4502ba9ad733383aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module Gitlab
  module CycleAnalytics
    class TestStage < BaseStage
      def initialize(*args)
        @start_time_attrs =  mr_metrics_table[:latest_build_started_at]
        @end_time_attrs = mr_metrics_table[:latest_build_finished_at]

        super(*args)
      end

      def name
        :test
      end

      def description
        "Total test time for all commits/merges"
      end

      def stage_query
        if @options[:branch]
          super.where(build_table[:ref].eq(@options[:branch]))
        else
          super
        end
      end
    end
  end
end