Compare commits

..

1 Commits

Author SHA1 Message Date
6e80198695 ci: Instrumentation tests coverage in ci. 2025-03-22 10:18:33 +01:00
2 changed files with 1 additions and 7 deletions
.gitea/workflows
androidApp/src/androidTest/kotlin/bou/amine/apps/readerforselfossv2/android

@ -42,8 +42,6 @@ jobs:
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
arch: x86_64
cores: 6
script: |
./gradlew androidApp:createScreenshotDirectory
./gradlew JacocoDebugCodeCoverage || true

@ -153,7 +153,6 @@ open class WithANRException {
"default root matcher, it may be picking a root that never takes focus. " +
"Root:",
)
private val otherException = "System Ul isn't responding"
private fun handleAnrDialogue() {
val device = UiDevice.getInstance(getInstrumentation())
@ -168,10 +167,7 @@ open class WithANRException {
Espresso.setFailureHandler { error, viewMatcher ->
takeScreenshot()
if (error.message!!.contains(rootViewWithoutFocusExceptionMsg) &&
error.message!!.contains(otherException) &&
anrCount < 3
) {
if (error.message!!.contains(rootViewWithoutFocusExceptionMsg) && anrCount < 3) {
anrCount++
handleAnrDialogue()
} else { // chain all failures down to the default espresso handler