Merging to main #90

Merged
hitanshu merged 12 commits from test into main 2025-11-14 20:09:57 +00:00
Showing only changes of commit f36d807731 - Show all commits

View File

@ -18,6 +18,11 @@ test {
useJUnitPlatform { useJUnitPlatform {
excludeTags 'integration' excludeTags 'integration'
} }
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
exceptionFormat "full" // shows full stack trace
showStandardStreams = true // shows println/log output
}
} }
tasks.register('integrationTestOnly', Test) { tasks.register('integrationTestOnly', Test) {
@ -26,6 +31,11 @@ tasks.register('integrationTestOnly', Test) {
} }
description = 'Runs only integration tests tagged with @Tag("integration")' description = 'Runs only integration tests tagged with @Tag("integration")'
group = 'verification' group = 'verification'
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
showStandardStreams = true
}
} }
repositories { repositories {