Compare commits

..

1 Commits

Author SHA1 Message Date
cf5d89452a ci: Instrumentation tests coverage in ci. 2025-03-26 07:57:59 +01:00
2 changed files with 5 additions and 1 deletions
.gitea/workflows
androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android

@ -38,10 +38,14 @@ jobs:
- name: Change url until I find a better way to do it
run: |
sed -i "s/val defaultUrl = \"http:\/\/10\.0\.2\.2\:8888\"/val defaultUrl = \"http:\/\/172\.17\.0\.1\:8888\"/g" ./androidApp/src/androidTest/kotlin/bou/amine/apps/readerforselfossv2/android/CommonTests.kt
- name: AVD kedavra
run: |
avdmanager list device
- name: Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
profile: Pixel 7a
script: |
./gradlew androidApp:clearScreenshotsTask || true
./gradlew androidApp:createScreenshotDirectory

@ -50,6 +50,7 @@ class SourcesActivity :
override fun onResume() {
super.onResume()
CountingIdlingResourceSingleton.increment()
val mLayoutManager = LinearLayoutManager(this)
var items: ArrayList<SelfossModel.SourceDetail>
@ -57,7 +58,6 @@ class SourcesActivity :
binding.recyclerView.setHasFixedSize(true)
binding.recyclerView.layoutManager = mLayoutManager
CountingIdlingResourceSingleton.increment()
CoroutineScope(Dispatchers.IO).launch {
val response = repository.getSourcesDetails()
CountingIdlingResourceSingleton.increment()