1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-23 22:14:06 +02:00

gradle task to run all tests including flaky, slow

This commit is contained in:
soloturn
2021-02-28 10:59:09 +01:00
parent b63453986f
commit 0750558cac

View File

@@ -77,9 +77,9 @@ tasks.test {
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
} }
tasks.register<Test>("slowTests") { tasks.register<Test>("testAll") {
useJUnitPlatform { useJUnitPlatform {
includeTags("slow") includeTags("any()", "none()")
} }
} }