Compare commits
1 Commits
37cd7d5d8c
...
1b33879b77
Author | SHA1 | Date | |
---|---|---|---|
1b33879b77 |
.gitea/workflows
androidApp
build.gradle.kts
src/androidTest/kotlin/bou/amine/apps/readerforselfossv2/android
@ -45,7 +45,6 @@ jobs:
|
|||||||
script: |
|
script: |
|
||||||
./gradlew androidApp:connectedAndroidTest
|
./gradlew androidApp:connectedAndroidTest
|
||||||
killall -INT crashpad_handler || true
|
killall -INT crashpad_handler || true
|
||||||
./gradlew androidApp:fetchScreenshots
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
|
@ -261,16 +261,30 @@ val createScreenshotDirectoryTask =
|
|||||||
commandLine = listOf("adb", "shell", "mkdir", "-p", "/sdcard/Pictures/selfoss_tests")
|
commandLine = listOf("adb", "shell", "mkdir", "-p", "/sdcard/Pictures/selfoss_tests")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register<Exec>("fetchScreenshots") {
|
val fetchScreenshotsTask =
|
||||||
println("AMINE : fetch")
|
tasks.register<Exec>("fetchScreenshots") {
|
||||||
group = "reporting"
|
println("AMINE : fetch")
|
||||||
executable(android.adbExecutable.toString())
|
group = "reporting"
|
||||||
commandLine = listOf("adb", "pull", "/sdcard/Pictures/selfoss_tests/.", reportsDirectory.toString())
|
executable(android.adbExecutable.toString())
|
||||||
|
commandLine = listOf("adb", "pull", "/sdcard/Pictures/selfoss_tests/.", reportsDirectory.toString())
|
||||||
|
|
||||||
finalizedBy(clearScreenshotsTask)
|
finalizedBy(clearScreenshotsTask)
|
||||||
dependsOn(createScreenshotDirectoryTask)
|
dependsOn(createScreenshotDirectoryTask)
|
||||||
|
|
||||||
doFirst {
|
doFirst {
|
||||||
reportsDirectory.mkdirs()
|
reportsDirectory.mkdirs()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.whenTaskAdded {
|
||||||
|
if (this.name == "connectedGithubConfigDebugAndroidTest") {
|
||||||
|
this.finalizedBy(fetchScreenshotsTask)
|
||||||
|
}
|
||||||
|
/* if (this.name == "mergeGithubConfigDebugResources" ||
|
||||||
|
this.name == "packageGithubConfigDebugResources" ||
|
||||||
|
this.name == "mapGithubConfigDebugSourceSetPaths" ||
|
||||||
|
this.name == "extractDeepLinksGithubConfigDebug"
|
||||||
|
) {
|
||||||
|
this.dependsOn("prepareLibraryDefinitionsGithubConfigDebug")
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
|
10
androidApp/src/androidTest/kotlin/bou/amine/apps/readerforselfossv2/android/SettingsActivityTest.kt
10
androidApp/src/androidTest/kotlin/bou/amine/apps/readerforselfossv2/android/SettingsActivityTest.kt
@ -93,9 +93,9 @@ class SettingsActivityTest : WithANRException() {
|
|||||||
onView(withText(R.string.translation)).check(matches(isDisplayed()))
|
onView(withText(R.string.translation)).check(matches(isDisplayed()))
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
/* @Test
|
||||||
fun testAbout() {
|
fun testAbout() {
|
||||||
onView(withText(R.string.action_about)).perform(click())
|
onView(withText(R.string.action_about)).perform(click())
|
||||||
onView(withText("ACRA")).check(matches(isDisplayed()))
|
onView(withText("ACRA")).check(matches(isDisplayed()))
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user