Compare commits

..

1 Commits

Author SHA1 Message Date
9d706b2b7e ci: Instrumentation tests coverage in ci.
Some checks failed
Check PR code / EspressoReports (pull_request) Failing after 20m28s
2025-03-20 10:00:52 +01:00
4 changed files with 5 additions and 6 deletions

View File

@ -20,7 +20,7 @@ jobs:
- uses: gradle/actions/setup-gradle@v3
- uses: android-actions/setup-android@v3
- name: Configure gradle...
run: mkdir -p ~/.gradle && echo "ignoreGitVersion=true" >> ~/.gradle/gradle.properties
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true" >> ~/.gradle/gradle.properties
- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: "2.23.3"

View File

@ -275,9 +275,9 @@ val fetchScreenshotsTask =
reportsDirectory.mkdirs()
}
}
/*
tasks.whenTaskAdded {
if (this.name == "connectedAndroidTest") {
// this.finalizedBy(fetchScreenshotsTask)
this.finalizedBy(fetchScreenshotsTask)
}
}*/
}

View File

@ -41,7 +41,7 @@ class HomeActivityTest : WithANRException() {
@Test
fun testMenu() {
onView(withId(R.id.action_search)).check(matches(isDisplayed())).check(
onView(withId(R.id.action_search)).check(matches(not(isDisplayed()))).check(
matches(
isClickable(),
),

View File

@ -27,4 +27,3 @@ org.gradle.caching=true
ignoreGitVersion=false
kotlin.native.cacheKind.iosX64=none
org.gradle.configureondemand=true
kotlin.jvm.target.validation.mode=IGNORE