We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50fa886 commit b71e43aCopy full SHA for b71e43a
buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts
@@ -70,6 +70,13 @@ tasks {
70
exceptionFormat = TestExceptionFormat.FULL
71
showStandardStreams = true
72
}
73
+
74
+ configure<JacocoTaskExtension> {
75
+ // only care about code coverage for code in this repository
76
+ // (in particular avoiding netty classes which sometimes end up
77
+ // causing sporadic CI failures)
78
+ includes = listOf("io/opentelemetry/contrib/**")
79
+ }
80
81
82
withType<Javadoc>().configureEach {
0 commit comments