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

moosetechnology / GitProjectHealth / 13836317433

13 Mar 2025 01:53PM UTC coverage: 67.231% (+0.3%) from 66.98%
13836317433

Pull #149

github

web-flow
Merge 679554b3f into 95d73a529
Pull Request #149: Fix mergerequest (closed , merged) duration project metric

2143 of 3405 new or added lines in 52 files covered. (62.94%)

12043 of 17913 relevant lines covered (67.23%)

0.67 hits per line

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

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

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

1✔
10
        | gitAnalyzer contributions groupedByDate |
1✔
11
        userCommits ifNil: [ self load ].
1✔
12
        groupedByDate := self setupGroupedDate.
1✔
13

1✔
14
        gitAnalyzer := GitAnalyzer new.
1✔
15

1✔
16
        contributions := userCommits collect: [ :commit |
1✔
17
                                 commit -> (gitAnalyzer
1✔
18
                                          fromCommit: commit;
1✔
19
                                          analyseCommitContribution) ].
1✔
20

1✔
21

1✔
22
        contributions do: [ :assoc |
1✔
23
                | dateOver |
1✔
24
                dateOver := self transformDate: assoc key created_at to: over.
1✔
25
                groupedByDate
1✔
26
                        at: dateOver printString
1✔
27
                        ifPresent: [ :v | v add: assoc value ]
1✔
28
                         ].
1✔
29

1✔
30
        groupedByDate := groupedByDate collect: [ :contribs |
1✔
31
                                 contribs sum: [ :v | v at: #addition ] ].
1✔
32

1✔
33
        ^ groupedByDate average asFloat
1✔
34
]
1✔
35

36
{ #category : #accessing }
NEW
37
CodeAdditionMetric >> description [
×
NEW
38

×
NEW
39
        ^ 'code addition (avg)'
×
NEW
40
]
×
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