Skip to content

Commit d6651f6

Browse files
robstollvlsi
authored andcommitted
printTestResult for all test tasks
1 parent a7af711 commit d6651f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/gradle-extensions-plugin/src/main/kotlin/com/github/vlsi/gradle/ProjectExtensionsPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ProjectExtensionsPlugin : Plugin<Project> {
3232
if (GitHubActionsLogger.isEnabled) {
3333
target.gradle.addListener(PrintGitHubActionsMarkersForFailingTasks)
3434
}
35-
target.tasks.withType<Test>().configureEach {
35+
target.tasks.withType<AbstractTestTask>().configureEach {
3636
testLogging {
3737
// Empty enum throws "Collection is empty", so we use Iterable method
3838
setEvents((events - TestLogEvent.FAILED) as Iterable<TestLogEvent>)

0 commit comments

Comments
 (0)