Björn Mayer
04/12/2024, 2:15 PMtasks.register<Test>("karateTests") {
group = "verification"
description = "Run Karate tests"
filter {
include("**/*KarateTest*")
isFailOnNoMatchingTests = false
}
}
Still, gradle insists on running all tests. Even a exclude("*")
does not help.
BTW: This is my current state. Before I tried using tags with no luckVampire
04/12/2024, 2:26 PM