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 a94e0ec commit 7352bf4Copy full SHA for 7352bf4
javaagent-tooling/build.gradle.kts
@@ -87,6 +87,18 @@ testing {
87
// Used by byte-buddy but not brought in as a transitive dependency.
88
compileOnly("com.google.code.findbugs:annotations")
89
}
90
+ targets {
91
+ all {
92
+ testTask.configure {
93
+ filter {
94
+ // Helper class used in test that refers to a class that is missing from the test
95
+ // classpath. We need to exclude it to avoid junit failing while it is searching for
96
+ // test classes.
97
+ excludeTestsMatching("MissingTypeTest\$SomeClass")
98
+ }
99
100
101
102
103
104
val testPatchBytecodeVersion by registering(JvmTestSuite::class) {
0 commit comments