XCode bot错误:早期意外退出,操作从未完成引导 -

时间:2016-03-30 14:54:14

标签: xcode continuous-integration xcode-ui-testing xcode-bots xcode7.3

我有一个用swift编写的项目,我有主要目标和两个测试目标,一个用于使用quick框架进行单元测试,它有3个KIF测试。 另一个目标有XCUItests。

所以每当我运行XCode bot与我们的XCode CI服务器集成时,我都会收到以下错误:

Bot Issue for Acceptance Bot (error)
Integration #63 of Acceptance Bot
Open in Xcode: xcbot://iosci/botID/1229919cecfcd510f090e37aed014a23/integrationID/16a3709d3ae008a68a65ff2fe9bb5a7b

Assertion: Test target MyUITests encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted)
File: (null):(null)

Introduced 2 integrations ago

Full logs for this integration are attached.

当我将它运行到模拟器集成中时,我遇到此错误,但是当我将CI服务器与物理设备连接并运行它时运行正常。

注意我正在使用XCode 7.3和迦太基0.11

1 个答案:

答案 0 :(得分:8)

我遇到了同样的错误(虽然我使用fastlane来运行我的UI测试)。

问题是由于模拟器卡在UI测试未处理的系统警报上。之后我的所有测试都失败了,随后的运行继续失败,因为模拟器没有响应。

我登录到机器并在中断警报上单击“确定”,一切都恢复正常。

在我的情况下,自应用程序尝试注册APNS和

以来警报出现了

“App Name”想要启用Notifications alert。跳过用于UI测试的APNS注册可以防止问题再次出现。