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 a7af711 commit d6651f6Copy full SHA for d6651f6
plugins/gradle-extensions-plugin/src/main/kotlin/com/github/vlsi/gradle/ProjectExtensionsPlugin.kt
@@ -32,7 +32,7 @@ class ProjectExtensionsPlugin : Plugin<Project> {
32
if (GitHubActionsLogger.isEnabled) {
33
target.gradle.addListener(PrintGitHubActionsMarkersForFailingTasks)
34
}
35
- target.tasks.withType<Test>().configureEach {
+ target.tasks.withType<AbstractTestTask>().configureEach {
36
testLogging {
37
// Empty enum throws "Collection is empty", so we use Iterable method
38
setEvents((events - TestLogEvent.FAILED) as Iterable<TestLogEvent>)
0 commit comments