Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use xcbeautify for test logs #57

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ install-lint:
install-xcodegen:
brew list xcodegen &>/dev/null || brew install xcodegen

install-xcbeautify:
brew list xcbeautify &>/dev/null || brew install xcbeautify

# Run Tasks

generate: install-xcodegen
Expand All @@ -29,7 +32,7 @@ test-iPad:
-scheme Hammer \
-destination "name=iPad Pro (12.9-inch) (6th generation)" \
test \
$(NO_CODE_SIGN_SETTINGS)
$(NO_CODE_SIGN_SETTINGS) | xcbeautify

test-iPhone:
set -o pipefail && \
Expand All @@ -38,7 +41,7 @@ test-iPhone:
-scheme Hammer \
-destination "name=iPhone 15" \
test \
$(NO_CODE_SIGN_SETTINGS)
$(NO_CODE_SIGN_SETTINGS) | xcbeautify

test-iPhone-iOS15:
set -o pipefail && \
Expand All @@ -48,7 +51,7 @@ test-iPhone-iOS15:
-destination "name=iPhone 11" \
-sdk iphonesimulator15.0 \
test \
$(NO_CODE_SIGN_SETTINGS)
$(NO_CODE_SIGN_SETTINGS) | xcbeautify

# List all targets (from https://stackoverflow.com/questions/4219255/how-do-you-get-the-list-of-targets-in-a-makefile)

Expand Down
Loading