File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 65
65
path : ~/.gradle/wrapper
66
66
key : ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
67
67
- name : Run tests
68
- run : ./gradlew --no-daemon clean jacocoTestReport --info
68
+ run : ./gradlew --no-daemon clean jacocoTestReport
69
69
- name : Upload code coverage
70
70
uses : codecov/codecov-action@v4
71
71
with :
Original file line number Diff line number Diff line change @@ -85,13 +85,18 @@ tasks.withType(Test) {
85
85
jacoco. includeNoLocationClasses = true
86
86
jacoco. excludes = [' jdk.internal.*' ]
87
87
testLogging {
88
- events " failed"
88
+ events " PASSED" , " SKIPPED" , " FAILED"
89
+ showStandardStreams true
90
+ showExceptions true
91
+ showCauses true
92
+ showStackTraces true
93
+ exceptionFormat " full"
89
94
}
90
95
}
91
96
92
- tasks. withType(Test ) {
93
- useJUnitPlatform()
94
- }
97
+ // tasks.withType(Test) {
98
+ // useJUnitPlatform()
99
+ // }
95
100
96
101
jacocoAndroidUnitTestReport {
97
102
csv. enabled false
You can’t perform that action at this time.
0 commit comments