Heyho, I am trying to add a custom test task to o...
# gradle
b
Heyho, I am trying to add a custom test task to only run a very small set of tests. This is how I set up the task:
Copy code
tasks.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 luck
not kotlin but kotlin colored 1
v
As in any channel of any server in any public community, please have a look at channel and server topic, not only names. 😉