Xcodebuild - Skip Finished requesting crash reports. Continuing with testing

后端 未结 2 1643
野趣味
野趣味 2021-02-07 04:32

I\'m running a CI machine with the Xcode.

The tests are triggered using fastlane gym. I see this line in the output:

2019-05-27 16:04

2条回答
  •  终归单人心
    2021-02-07 05:13

    Your mileage may vary, but after setting up a new machine with the following configuration, I encountered the same issue OP details:

    • macOS 10.15.2
    • Xcode 11.3
    • fastlane 2.139.0
    • Simulators @ 13.3

    When I run my fastlane test with 3 devices, I wind up at the following message and was sitting idle for about four minutes before I terminated it:

    I then took the steps that I outlined in the comment to OP:

    1. fastlane scan init
    2. Edit my scanfile to look like this

    I initially set disable_concurrent_testing(false), and when I ran the tests through fastlane, I got stuck again. Changing the value to disable_concurrent_testing(true) has allowed the tests to now run on my machine.

提交回复
热议问题