Skip to content

Commit

Permalink
try uninstall com.betrybe apks before running tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniosb committed Jan 24, 2024
1 parent f8bb76f commit 5ce8068
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,12 @@ runs:
disable-animations: true
api-level: 29
# script: ./gradlew connectedCheck
script: adb uninstall com.betrybe.sociallogin.test && ./gradlew connectedCheck
script: |
adb shell pm list packages com.betrybe |
cut -d ':' -f 2 |
tr -d '\r' |
xargs -L1 -t adb uninstall
./gradlew connectedCheck
- name: Get JUnit results
id: get_junit_results
Expand Down

0 comments on commit 5ce8068

Please sign in to comment.