Skip to content

Commit

Permalink
ci: fix broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
jscancella committed Jan 14, 2023
1 parent 1c07dfb commit fdcc26c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code-quality.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ pmd {
jacocoTestCoverageVerification {
violationRules {
rule {
excludes = ['com.github.jscancella.exceptions.*', 'com.github.jscancella.conformance.exceptions.*', 'com.github.jscancella.hash.standard.SHA384Hasher']
excludes = ['com.github.jscancella.exceptions.*', //because we don't care about coverage in exceptions
'com.github.jscancella.conformance.exceptions.*',
'com.github.jscancella.internal.PathUtils', //because most of the functions are windows only
'com.github.jscancella.hash.standard.SHA384Hasher'] //because it is exactly the same as the other sha hashers
element = 'CLASS'
limit {
minimum = 0.80
Expand Down

0 comments on commit fdcc26c

Please sign in to comment.