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 917bc58 commit 6da511dCopy full SHA for 6da511d
instrumentation-annotations-incubator/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