diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-05-17 01:14:09 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-17 01:14:09 +0530 |
commit | d103d6d4ba6638b163b75929c15bb2fe801539a3 (patch) | |
tree | f848c30fcdf1e439a77981b3e59a57de5433ed76 /.github | |
parent | 7c0d99b8b8657da35872e1d01eff6d01a52befb4 (diff) |
Add tests for GitServerConfigActivity (#783)
* Add tests for GitServerConfigActivity
* github: disable animations before running UI tests
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull_request.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 826e0ff5..7d80d3a5 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -59,4 +59,8 @@ jobs: with: api-level: ${{ matrix.api-level }} target: default - script: ./gradlew connectedCheck + script: | + adb shell settings put global animator_duration_scale 0 + adb shell settings put global transition_animation_scale 0 + adb shell settings put global window_animation_scale 0 + ./gradlew connectedCheck |