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 a6f9547 commit 7e8b785Copy full SHA for 7e8b785
build.gradle
@@ -153,8 +153,9 @@ subprojects {
153
test {
154
useJUnitPlatform()
155
testLogging {
156
- events "FAILED"
+ events "PASSED", "FAILED"
157
showExceptions true
158
+ showCauses true
159
exceptionFormat "FULL"
160
stackTraceFilters "ENTRY_POINT"
161
maxGranularity 3
@@ -169,6 +170,8 @@ subprojects {
169
170
}
171
172
173
+ forkEvery = 1
174
+
175
if (isCiServer) {
176
def stdout = new LinkedList<TestOutputEvent>()
177
beforeTest { TestDescriptor td ->
0 commit comments