在android项目错误中配置travis.yml文件

时间:2016-05-24 03:33:32

标签: android integration-testing travis-ci

我只想让travis ci检查我的项目没有错误(我没有测试用例)。但是当我提交我的代码时,travis ci总是运行失败或错误(我的项目没有错误)。有人可以帮助我。

我的travis.yml文件内容:

language: android
android:
  components:
    - build-tools-23.0.2
    - android-23
    - extra
  licenses:
    - 'android-sdk-preview-license-52d11cd2'
    - 'android-sdk-license-.+'
    - 'google-gdk-license-.+'
  before_script:
  - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
  - emulator -avd test -no-audio -no-window &
  - android-wait-for-emulator
  - adb shell input keyevent 82 &
  script: ./gradlew connectedAndroidTest

CHMOD:

enter image description here

输出:

enter image description here

0 个答案:

没有答案