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

moosetechnology / GitProjectHealth / 13452965956

21 Feb 2025 08:31AM UTC coverage: 62.253% (+0.3%) from 61.942%
13452965956

push

github

web-flow
Merge pull request #133 from moosetechnology/fixing-CodeAdditionProjectMetricTest

Fixing code addition project metric test

2305 of 3716 new or added lines in 34 files covered. (62.03%)

9783 of 15715 relevant lines covered (62.25%)

0.62 hits per line

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

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

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

1✔
10
        | groupedByDate |
1✔
11
        projectCommits ifNil: [ self load ].
1✔
12
        
1✔
13
        groupedByDate := self setupGroupedDate.
1✔
14

1✔
15
        projectCommits do: [ :c |
1✔
16
                | dateOver |
1✔
17
                dateOver := self transformDate: c created_at to: over.
1✔
18
                groupedByDate at: dateOver printString ifPresent: [ :v | v add: c ] ].
1✔
19

1✔
20
        groupedByDate := groupedByDate collect: [ :group | group size ].
1✔
21

1✔
22
        ^ groupedByDate average asFloat
1✔
23
]
1✔
24

25
{ #category : #accessing }
26
CommitFrequencyProjectMetric >> description [
×
27

×
NEW
28
        ^ 'Commits frequency (avg)'
×
29
]
×
30

31
{ #category : #loading }
32
CommitFrequencyProjectMetric >> load [
1✔
33
        projectCommits := self loadCommitsSince: (period at: #since) until: (period at: #until) 
1✔
34
]
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc