Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jacoco and merge #218

Open
wants to merge 3 commits into
base: upgrade-jdk11
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
avd-name: avd
install: true
system-image: system-images;android-29;default;x86
additional-args: --sdcard 2048M
additional-args: -c 2048M

- android/start-emulator:
avd-name: avd
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
adb shell pm list packages

- android/run-tests:
test-command: ./gradlew grantPermissionForODKApp connectedSnapshotDebugAndroidTest
test-command: ./gradlew grantPermissionForODKApp createSnapshotDebugAndroidTestCoverageReport
max-tries: 2

- store_artifacts:
Expand Down
2 changes: 1 addition & 1 deletion tables_app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ android {
}
debug {
debuggable(true)
//testCoverageEnabled(testCoverage) // Allows AndroidTest JaCoCo reports to be generated
testCoverageEnabled = testCoverage
}
}

Expand Down