From 54d2ff4b46474f43688f951ca56b3a835c04ac11 Mon Sep 17 00:00:00 2001 From: soloturn Date: Sat, 21 Nov 2020 11:08:59 +0100 Subject: [PATCH] gradle, not execute flaky tests by default --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index b4435c29..5572205f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,7 +63,7 @@ tasks.withType { tasks.test { useJUnitPlatform { // gradle-6.5.1 not yet allows passing this as parameter, so exclude it - excludeTags("slow") + excludeTags("flaky","slow") includeEngines("junit-jupiter") includeEngines("junit-vintage") }