Skip slow tests by default

This commit is contained in:
2021-03-03 13:48:27 +01:00
parent ea110d51d3
commit 51b682c593
5 changed files with 10 additions and 2 deletions
@@ -5,7 +5,9 @@ plugins {
}
tasks.withType<Test> {
useJUnitPlatform()
useJUnitPlatform {
excludeTags("slow")
}
}
dependencies {