• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

moosetechnology / GitProjectHealth / 13562032915

27 Feb 2025 08:29AM UTC coverage: 63.625% (+0.9%) from 62.725%
13562032915

Pull #136

github

web-flow
Merge 38d64247b into 29b562512
Pull Request #136: WIP Closed merge request duration project metric

5500 of 6814 new or added lines in 79 files covered. (80.72%)

10383 of 16319 relevant lines covered (63.63%)

0.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

84.91
/src/GitLabHealth-Model-Analysis/MergeRequestDurationMetric.class.st
1
Class {
2
        #name : #MergeRequestDurationMetric,
3
        #superclass : #UserMergeRequestMetric,
4
        #category : #'GitLabHealth-Model-Analysis'
5
}
6

7
{ #category : #calculating }
8
MergeRequestDurationMetric >> calculate [
1✔
9

1✔
10
        | groupedByDate gitAnalyzer mergeRequestsValidation filterGroups |
1✔
11
        userMergeRequests ifNil: [ self load ].
1✔
12
        
1✔
13
        groupedByDate := self setupGroupedDate.
1✔
14

1✔
15
        userMergeRequests ifEmpty: [ ^ nil ].
1✔
16

1✔
17
        gitAnalyzer := GitAnalyzer new.
1✔
18

1✔
19
        mergeRequestsValidation := userMergeRequests collect: [ :mr |
1✔
20
                                           gitAnalyzer
1✔
21
                                                   analyseMergeResquestValidation: mr ].
1✔
22

1✔
23

1✔
24
        mergeRequestsValidation do: [ :dic |
1✔
25
                | overDate |
1✔
26
                overDate := self transformDate: (dic at: #created_at) to: over.
1✔
27

1✔
28
                groupedByDate
1✔
29
                        at: overDate printString
1✔
30
                        ifPresent: [ :durations | durations add: (dic at: #duration) ]
1✔
31
                        ifAbsentPut: [
1✔
32
                                OrderedCollection new
1✔
33
                                        add: (dic at: #duration);
1✔
34
                                        yourself ] ].
1✔
35

1✔
36

1✔
37
        filterGroups := groupedByDate reject: [ :array | array isEmpty ].
1✔
38

1✔
39
        filterGroups associations do: [ :assoc |
1✔
40
                | sum denominator |
1✔
41
                denominator := assoc value size.
1✔
42

1✔
43
                sum := assoc value sum: [ :v |
1✔
44
                               v ifNil: [
1✔
45
                                       denominator := denominator - 1.
1✔
46
                                       0 asDuration ] ].
1✔
47
                denominator = 0 ifTrue: [ denominator := 1 ].
1✔
48

1✔
49
                filterGroups at: assoc key put: sum / denominator ].
1✔
50

1✔
51
        ^ filterGroups average asSeconds
1✔
52
]
1✔
53

54
{ #category : #accessing }
NEW
55
MergeRequestDurationMetric >> description [
×
NEW
56

×
NEW
57
        ^ 'average time to merge a merge request (in seconds)'
×
NEW
58
]
×
59

60
{ #category : #accessing }
NEW
61
MergeRequestDurationMetric >> name [
×
NEW
62

×
NEW
63
        ^ 'mergeRequestDuration'
×
NEW
64
]
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc