There is a issue in the workflow of steps-xcode-test (https://github.com/bitrise-io/steps-xcode-test):
In the scenario where the workflow is required to find the deriveddata path from XCode to export the attachments it fails.
If the project_path contains spaces in the naming of the xcode project filename the function:
func saveAttachments(projectPath, scheme string) error
does not replace the spaces with underscores.
as an example it tries to look for the artefacts in path:
/Users/vagrant/Library/Developer/Xcode/DerivedData/Project Name-*
instead of:
/Users/vagrant/Library/Developer/Xcode/DerivedData/Project_Name-*
Hope this problem can be fixed soon