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 4a227fc commit 7b77948Copy full SHA for 7b77948
instrumentation-annotations/build.gradle.kts
@@ -11,3 +11,10 @@ group = "io.opentelemetry.instrumentation"
11
dependencies {
12
api("io.opentelemetry:opentelemetry-api")
13
}
14
+
15
+tasks.test {
16
+ // This module does not have tests, but has example classes in the test directory. Gradle 9 fails
17
+ // the build when there are source files in the test directory but no tests to run so we disable
18
+ // the test task.
19
+ enabled = false
20
+}
0 commit comments