Skip to content

Commit

Permalink
Use xcbeautify for test logs (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosgriselli authored Jun 12, 2024
1 parent 52ef933 commit 5dd4ebb
Showing 1 changed file with 6 additions and 3 deletions.
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

0 comments on commit 5dd4ebb

Please sign in to comment.