From 026dcacbaf14010009f1c6bf90376adf1374d596 Mon Sep 17 00:00:00 2001 From: MohitMaliFtechiz Date: Fri, 15 Mar 2024 22:51:11 +0530 Subject: [PATCH] Removed the APK sharing in test cases since if a text case fails it crashed all the test cases even we re-run that test case in second run. --- .github/workflows/ci.yml | 3 --- app/build.gradle.kts | 3 --- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acb8fddd99..f8f4f6cb7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,9 +37,6 @@ jobs: restore-keys: | ${{ runner.os }}-gradle- - - name: Build APK for test cases - run: ./gradlew assembleDebug - - name: create instrumentation coverage uses: ReactiveCircus/android-emulator-runner@v2 env: diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 892e983659..389a47e7e4 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -39,9 +39,6 @@ android { versionCode = generateVersionCode() versionName = generateVersionName() manifestPlaceholders["permission"] = "android.permission.MANAGE_EXTERNAL_STORAGE" - testInstrumentationRunnerArguments += mapOf( - "apk" to "$buildDir/outputs/apk/androidTest/debug/kiwix-debug-androidTest.apk" - ) } lint { checkDependencies = true