Skip to content

Commit 383448e

Browse files
committed
coverage report
1 parent 3bdf27c commit 383448e

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

.github/workflows/sdk_test.yml

+13
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ jobs:
5858
echo "Free space:"
5959
df -h
6060
61+
- name: Run Coverage
62+
run: ./gradlew :xendit-android:jacocoReport
63+
6164
- name: Grant execute permission for gradlew
6265
run: chmod +x gradlew
6366

@@ -72,6 +75,16 @@ jobs:
7275
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
7376
script: ./gradlew :xendit-android:connectedCheck --stacktrace
7477

78+
- name: Add coverage to PR
79+
id: jacoco
80+
uses: madrapps/[email protected]
81+
with:
82+
paths: |
83+
${{ github.workspace }}/**/build/reports/coverage/androidTest/debug/connected/report.xml
84+
token: ${{ secrets.GITHUB_TOKEN }}
85+
min-coverage-overall: 40
86+
min-coverage-changed-files: 60
87+
7588
# notify-slack:
7689
# needs: unit-test
7790
# runs-on: ubuntu-latest

build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ buildscript {
99
classpath 'com.android.tools.build:gradle:8.2.2'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1111
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0'
12+
//Jacoco Plugin
13+
classpath "org.jacoco:org.jacoco.core:0.8.10"
1214
// NOTE: Do not place your application dependencies here; they belong
1315
// in the individual module build.gradle files
1416
}

jacoco.gradle

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
apply plugin: 'jacoco'
2+
3+
task jacocoReport(type: JacocoReport, dependsOn: 'testDebugUnitTest') {
4+
reports {
5+
csv { enabled false } // change if needed
6+
xml { enabled true } // change if needed
7+
html {
8+
enabled true
9+
destination file("${buildDir}/coverage-report")
10+
}
11+
}
12+
13+
// Setup the .class, source, and execution directories
14+
final fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', 'android/**/*.*']
15+
16+
// Include this if you use Kotlin
17+
final kotlinTree = fileTree(dir: "${project.buildDir}/tmp/kotlin-classes/debug", excludes: fileFilter)
18+
final javacTree = fileTree(dir: "${project.buildDir}/intermediates/javac/debug", excludes: fileFilter)
19+
final mainSrc = "${project.projectDir}/src/main/java"
20+
21+
sourceDirectories.setFrom files([mainSrc])
22+
classDirectories.setFrom files([kotlinTree, javacTree])
23+
executionData.setFrom fileTree(dir: project.buildDir, includes: [
24+
'jacoco/testDebugUnitTest.exec', 'outputs/code-coverage/connected/*coverage.ec'
25+
])
26+
}

xendit-android/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'maven-publish'
33
apply plugin: 'signing'
4+
apply plugin: 'jacoco'
5+
apply from: "$project.rootDir/jacoco.gradle"
46

57
group 'com.xendit'
68
version '4.2.2'
@@ -49,6 +51,8 @@ android {
4951
}
5052
debug {
5153
minifyEnabled false
54+
enableUnitTestCoverage true
55+
testCoverageEnabled true
5256
consumerProguardFiles 'proguard-rules.pro'
5357
buildConfigField('long', 'VERSION_CODE', "${defaultConfig.versionCode}")
5458
buildConfigField('String','VERSION_NAME', "\"${defaultConfig.versionName}\"")

0 commit comments

Comments
 (0)