android – 如何使用deviceCheck任务在远程设备上运行测试

前端之家收集整理的这篇文章主要介绍了android – 如何使用deviceCheck任务在远程设备上运行测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
http://tools.android.com/tech-docs/new-build-system/user-guide,定义了以下任务:
  • assemble The task to assemble the output(s) of the project
  • check The
    task to run all the checks.
  • connectedCheck Runs checks that requires a
    connected device or emulator. they will run on all connected devices
    in parallel.
  • deviceCheck Runs checks using APIs to connect to remote
    devices. This is used on CI servers.
  • build This task does both
    assemble and check
  • clean This task cleans the output of the project

我正在设置一个Jenkins CI来运行我的(Espresso)测试,并且deviceCheck任务描述似乎与之相关.但是,我找不到任何关于如何在CI服务器上使用此任务执行远程设备上的测试的文档或示例.有谁知道如何使用它?

解决方法

我建议运行测试: Spoon.它很容易设置,有很多很好的开箱即用功能.例如好的测试报告,截图.

我在我的Jenkins CI上使用它,它的效果非常好!我已将多个设备连接到CI服务器,并且所有测试都运行.

原文链接:https://www.f2er.com/android/311356.html

猜你在找的Android相关文章