Skip to content

Commit c732f69

Browse files
committed
hack
1 parent 25f3a86 commit c732f69

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ui-tests-starter/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,11 @@ tasks.test {
5050

5151
systemProperty("ui.test.plugins", testPlugins.get().asPath)
5252
}
53+
54+
// hack to disable ui tests in ./gradlew check
55+
val action = Action<TaskExecutionGraph> {
56+
if (hasTask(tasks.test.get())) {
57+
tasks.test.get().enabled = false
58+
}
59+
}
60+
gradle.taskGraph.whenReady(action)

0 commit comments

Comments
 (0)