build.gradle.kts and tag expressions
Closed this issue · 2 comments
soloturn commented
its not easy to find out how to run all tests without a tag, plus the ones with a tag flaky, with build.gradle.kts could you add an example or point to one?
sbrannen commented
Have you tried using the tag expression none() | flaky?
marcphilipp commented
Here's a complete example that should work:
tasks.test {
useJUnitPlatform {
includeTags("none() | flaky")
}
}Please let us know, if it doesn't.