Skip to content

Commit

Permalink
Create unit test report as html (#4384)
Browse files Browse the repository at this point in the history
Signed-off-by: Dinu John <86094133+dinujoh@users.noreply.github.com>
  • Loading branch information
dinujoh committed Apr 10, 2024
1 parent dc9f5a7 commit beb2815
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,18 @@ subprojects {

test {
useJUnitPlatform()
reports {
junitXml.required
html.required
}
}

build.dependsOn test
jacocoTestReport {
dependsOn test // tests are required to run before generating the report
reports {
xml.required
html.required
}
}

Expand Down

0 comments on commit beb2815

Please sign in to comment.