Compare commits

..

1 Commits

Author SHA1 Message Date
e2d2f4b3ef ci: Instrumentation tests coverage in ci.
Some checks failed
Check PR code / EspressoReports (pull_request) Has been cancelled
2025-03-19 22:54:51 +01:00
2 changed files with 2 additions and 4 deletions

View File

@ -32,9 +32,6 @@ jobs:
with: with:
api-level: 29 api-level: 29
arch: x86_64 arch: x86_64
force-avd-creation: false
disable-linux-hw-accel: false
emulator-options: -no-window -gpu host -no-snapshot -noaudio -no-boot-anim
script: ./gradlew androidApp:connectedAndroidTest script: ./gradlew androidApp:connectedAndroidTest
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
if: failure() if: failure()

View File

@ -235,6 +235,7 @@ tasks.withType<Test> {
} }
aboutLibraries { aboutLibraries {
excludeFields = arrayOf("generated")
offlineMode = true offlineMode = true
fetchRemoteLicense = false fetchRemoteLicense = false
fetchRemoteFunding = false fetchRemoteFunding = false
@ -276,7 +277,7 @@ val fetchScreenshotsTask =
} }
tasks.whenTaskAdded { tasks.whenTaskAdded {
if (this.name == "connectedGithubConfigDebugAndroidTest") { if (this.name == "connectedAndroidTest") {
this.finalizedBy(fetchScreenshotsTask) this.finalizedBy(fetchScreenshotsTask)
} }
} }