ISSUE-44: Adding more tests #91

Merged
hitanshu merged 3 commits from hitanshu/CFTunnels:ISSUE-44 into test 2025-11-16 13:38:34 +00:00
Showing only changes of commit 95ec64630a - Show all commits

View File

@ -18,6 +18,11 @@ test {
useJUnitPlatform {
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) {
@ -26,6 +31,11 @@ tasks.register('integrationTestOnly', Test) {
}
description = 'Runs only integration tests tagged with @Tag("integration")'
group = 'verification'
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
showStandardStreams = true
}
}
repositories {