fix(coverage): detailed coverage test filtering
This commit is contained in:
parent
326c31c149
commit
fb48c58a30
5 changed files with 415 additions and 4 deletions
|
|
@ -50,7 +50,8 @@ jacocoTestReport {
|
|||
'**/IlpCourseworkApplication.class',
|
||||
'**/config/*',
|
||||
'**/data/*',
|
||||
'**/util/*'
|
||||
'**/util/*',
|
||||
'**/TelemetryService.class'
|
||||
])
|
||||
}))
|
||||
}
|
||||
|
|
@ -62,17 +63,18 @@ jacocoTestCoverageVerification {
|
|||
element = 'CLASS'
|
||||
|
||||
excludes = [
|
||||
'io.github.js0ny.IlpCourseworkApplication',
|
||||
'io.github.js0ny.ilp_coursework.IlpCourseworkApplication',
|
||||
'**.config.**',
|
||||
'**.data.**',
|
||||
'**.util.**'
|
||||
'**.util.**',
|
||||
'io.github.js0ny.ilp_coursework.service.TelemetryService'
|
||||
]
|
||||
|
||||
limit {
|
||||
counter = 'BRANCH'
|
||||
value = 'COVEREDRATIO'
|
||||
|
||||
// minimum = 0.50
|
||||
minimum = 0.50
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue