Skip to content

Commit 5a9e1c7

Browse files
committed
Fix latestDepTest configuration
1 parent a10ebc2 commit 5a9e1c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/kotlin/dd-trace-java.configure-tests.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tasks.register("allTests") {
7474
// This is used when we want to run tests against the latest dependency versions.
7575
tasks.register("allLatestDepTests") {
7676
dependsOn(tasks.withType<Test>().matching { testTask ->
77-
!testTask.name.contains("latest", ignoreCase = true)
77+
testTask.name.contains("latest", ignoreCase = true)
7878
})
7979
}
8080

0 commit comments

Comments
 (0)