4.7.5
What's Changed
Fixed fallback to xcodebuild when xcpretty/xcbeautify log formatter is unavailable.
Before:
Checking log formatter (xcbeautify) version
Failed to install Step dependencies:
installing log formatter failed:
failed to run xcbeautify command:
executing command failed (xcbeautify "--version"):
exec: "xcbeautify":
executable file not found in $PATH
Switching to xcodebuild for output tool
Running the tests...
[16:58:43] $ set -o pipefail && xcodebuild "-workspace"[ ... ] | xcbeautify
xcbeautify command failed: executing command failed (xcbeautify): exec: not started
Exit code: -1
After:
Checking log formatter (xcbeautify) version
Checking log formatter failed: failed to run xcbeautify command: executing command failed (xcbeautify "--version"): exec: "xcbeautify": executable file not found in $PATH
Switching back to xcodebuild log formatter.
Running the tests...
[16:57:02] $ xcodebuild "-workspace" [...]
Full Changelog: 4.7.4...4.7.5