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 4c76654 commit 4b77188Copy full SHA for 4b77188
buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts
@@ -76,6 +76,13 @@ tasks {
76
exceptionFormat = TestExceptionFormat.FULL
77
showStandardStreams = true
78
}
79
+
80
+ configure<JacocoTaskExtension> {
81
+ // only care about code coverage for code in this repository
82
+ // (in particular avoiding netty classes which sometimes end up
83
+ // causing sporadic CI failures)
84
+ includes = listOf("io/opentelemetry/contrib/**")
85
+ }
86
87
88
withType<Javadoc>().configureEach {
0 commit comments