Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As for now, one of the steps to run xcuitest it to upload test configuration to a device. Later a path to uploaded file is just used as
XCTestConfigurationFilePath
env variable for test runner process. We use house_arrest service to upload file to application's container, however when it comes to test runner application built by Xcode it fails withInstallationLookupFailed
error as runner doesn't haveUIFileSharingEnabled
permission.I've just tried to run tests using Xcode and looked through env variables in runtime. It appeared that Xcode pass this env indeed but leaves it empty, tested on iOS15.8.3/16.1/17.6.1, Xcode15.3/16.1.
I think we should setup test configuration similar way on iOS17+ or lower, that is not to upload
.xctestconfiguration
as Xcode does not. Unfortunately I don't have devices with earlier OS on board and cannot test it with iOS13 and earlier, so decided not to change current behavior.