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
+1 -1
View File
@@ -14,6 +14,6 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31")
implementation("org.jetbrains.kotlin:kotlin-serialization:1.4.31")
implementation("com.github.jengelman.gradle.plugins:shadow:6.1.0")
implementation("org.jlleitschuh.gradle:ktlint-gradle:9.4.1")
implementation("org.jlleitschuh.gradle:ktlint-gradle:10.0.0")
implementation("com.github.ben-manes:gradle-versions-plugin:0.28.0")
}
@@ -5,7 +5,9 @@ plugins {
}
tasks.withType<Test> {
useJUnitPlatform()
useJUnitPlatform {
excludeTags("slow")
}
}
dependencies {