Skip to content

Commit b786ec4

Browse files
fix: Update Run Instrumented Tests command (#488)
1 parent 5f7eeed commit b786ec4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/daily.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,11 @@ jobs:
8585
uses: reactivecircus/android-emulator-runner@d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b #v2.28.0
8686
with:
8787
api-level: 29
88-
script: ./gradlew :android-core:cAT :android-kit-base:cAT --stacktrace
88+
#script: ./gradlew :android-core:cAT :android-kit-base:cAT --stacktrace
89+
script: |
90+
#Disable benchmark tests as they do not work on emulators
91+
adb uninstall com.mparticle.kits.test; ./gradlew connectedCheck --stacktrace
92+
./gradlew :android-core:cAT :android-kit-base:cAT -Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=none
8993
- name: "Archive Instrumented Test Results"
9094
uses: actions/upload-artifact@v3
9195
if: always()

0 commit comments

Comments
 (0)