Test target `MyAppTests` encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted)
Asked Answered
S

1

8

Problem arise with continuous integration when try to run bot on device.

Test target MyAppTests encountered an error (Early unexpected exit, operation never finished bootstrapping - no restart will be attempted)

Do you know why it happens? Any ideas?

enter image description here

Spellman answered 3/10, 2016 at 14:38 Comment(3)
Have the exactly same issues. Are you using CocoaPods as well?Ben
yes, using cocoapodsDualism
Finally found a solution that worked for me. I'm trying to re-trace my steps and will post an answer here.Ben
B
2

The following worked for me.
I don't know if some of the steps can be skipped, so I'm posting all of it.

  1. Update CocoaPods to version min. 1.1.0 on both dev machine and server sudo gem update cocoapods.
  2. As per terminal output during CocoaPods set Always Embed Swift Standard Libraries to No in the projects settings. I did it for the main, test and UI test targets.
  3. Upgrade OS X Server to latest version (see more below).
  4. Upgrade Xcode to latest version both on dev machine and server.
  5. Select Xcode through server app again.
  6. Create and log in as the test user Xcode required for UI tests. (trouble shooting below)
  7. Open Xcode on the server and install missing components (it will ask on launch).
  8. Reboot server.

My integrations did an upgrade afterwards and the errors you mentioned were gone.

I should mention that on my bots I have a pre-Integration Script that re-installs all of my CocoaPods on server. I also clean solution before each build.


Upgrade OS X to latest version.
You might get away with upgrading to your minimum target OS version of your app. This might be the reason for your UI test failures. I traced my logs and found the output folder for the Bot. The app was not launch-able as the target OS version was greater than the server itself.


Troubleshooting Xcode Server user is "disconnected".
I had an issue where the user was "Disconnected" and the Xcode service on the user session was hanging on "Refreshing".
enter image description here
enter image description here

I had to re-select Xcode in the server app and create a new Xcode Server user for unit testing. The problem went away immediately after that. If someone knows how to fix the existing user, please let me know.

Ben answered 30/10, 2016 at 19:42 Comment(2)
The upgrade my Bots did was due to SDK upgrades when going from Xcode 8.0 to 8.1.Ben
Thanks for sharing. Reselecting Xcode was the only thing I didn't try!Wicks

© 2022 - 2024 — McMap. All rights reserved.