Serial or Parallel: Device testing order on Robo Test Lab

五迷三道 提交于 2021-02-05 10:37:32

问题


When I run a test configuration with several physical devices on the Robo Test Lab (from either the firebase console or by uploading the app to the play store), do the devices run in parallel or serially?

My robo setup script will not be 100% reproduceable if the devices are running in parallel due to sharing the same setup parameters among the test devices, so I could use knowing if I must put code in place to handle this.


回答1:


Devices are acquired and tests executed as quickly as possible, i.e. most of the time your tests will run in parallel on different devices at the same time.

There's no way to configure the tests to be serialized. You would need to do this yourself, by starting a test on one device and wait for it to complete before starting another one.



来源:https://stackoverflow.com/questions/58419361/serial-or-parallel-device-testing-order-on-robo-test-lab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!