We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f3a86 commit c732f69Copy full SHA for c732f69
ui-tests-starter/build.gradle.kts
@@ -50,3 +50,11 @@ tasks.test {
50
51
systemProperty("ui.test.plugins", testPlugins.get().asPath)
52
}
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