Disable coverage checks for LoggingWriter
The build fails from time to time complaining about this class not being tested. Looks like randomness of thi is due to Gradle's caching. Ideally we would like to have this class tested, but Lombok injecting logger doesn't really provide much of a room to test there.
This commit is contained in:
parent
e2e4c9b85a
commit
baa54c3553
|
@ -11,6 +11,7 @@ minimumBranchCoverage = 0.5
|
|||
minimumInstructionCoverage = 0.6
|
||||
excludedClassesConverage += [
|
||||
'datadog.trace.common.writer.ListWriter',
|
||||
'datadog.trace.common.writer.LoggingWriter',
|
||||
'datadog.trace.common.sampling.PrioritySampling'
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue