Skip to content

Commit c744de4

Browse files
mbrandonwmluisbrown
authored andcommitted
Remove --quiet so that we can diagnose test failures (#180)
1 parent 6c272b1 commit c744de4

File tree

1 file changed

+16
-32
lines changed

1 file changed

+16
-32
lines changed

Makefile

Lines changed: 16 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -15,68 +15,52 @@ test-swift:
1515
test-workspace:
1616
xcodebuild test \
1717
-scheme ComposableArchitecture \
18-
-destination platform="$(PLATFORM_IOS)" \
19-
-quiet
18+
-destination platform="$(PLATFORM_IOS)"
2019
xcodebuild test \
2120
-scheme ComposableArchitecture \
22-
-destination platform="$(PLATFORM_MACOS)" \
23-
-quiet
21+
-destination platform="$(PLATFORM_MACOS)"
2422
xcodebuild test \
2523
-scheme ComposableArchitecture \
26-
-destination platform="$(PLATFORM_TVOS)" \
27-
-quiet
24+
-destination platform="$(PLATFORM_TVOS)"
2825
xcodebuild test \
2926
-scheme ComposableCoreLocation \
30-
-destination platform="$(PLATFORM_IOS)" \
31-
-quiet
27+
-destination platform="$(PLATFORM_IOS)"
3228
xcodebuild test \
3329
-scheme ComposableCoreLocation \
34-
-destination platform="$(PLATFORM_MACOS)" \
35-
-quiet
30+
-destination platform="$(PLATFORM_MACOS)"
3631
xcodebuild test \
3732
-scheme ComposableCoreLocation \
38-
-destination platform="$(PLATFORM_TVOS)" \
39-
-quiet
33+
-destination platform="$(PLATFORM_TVOS)"
4034
xcodebuild test \
4135
-scheme "CaseStudies (SwiftUI)" \
42-
-destination platform="$(PLATFORM_IOS)" \
43-
-quiet
36+
-destination platform="$(PLATFORM_IOS)"
4437
xcodebuild test \
4538
-scheme "CaseStudies (UIKit)" \
46-
-destination platform="$(PLATFORM_IOS)" \
47-
-quiet
39+
-destination platform="$(PLATFORM_IOS)"
4840
xcodebuild test \
4941
-scheme MotionManager \
50-
-destination platform="$(PLATFORM_IOS)" \
51-
-quiet
42+
-destination platform="$(PLATFORM_IOS)"
5243
xcodebuild test \
5344
-scheme LocationManagerDesktop \
54-
-destination platform="$(PLATFORM_MACOS)" \
55-
-quiet
45+
-destination platform="$(PLATFORM_MACOS)"
5646
xcodebuild test \
5747
-scheme LocationManagerMobile \
58-
-destination platform="$(PLATFORM_IOS)" \
59-
-quiet
48+
-destination platform="$(PLATFORM_IOS)"
6049
xcodebuild test \
6150
-scheme Search \
62-
-destination platform="$(PLATFORM_IOS)" \
63-
-quiet
51+
-destination platform="$(PLATFORM_IOS)"
6452
xcodebuild test \
6553
-scheme SpeechRecognition \
66-
-destination platform="$(PLATFORM_IOS)" \
67-
-quiet
54+
-destination platform="$(PLATFORM_IOS)"
6855
xcodebuild test \
6956
-scheme TicTacToe \
70-
-destination platform="$(PLATFORM_IOS)" \
71-
-quiet
57+
-destination platform="$(PLATFORM_IOS)"
7258
xcodebuild test \
7359
-scheme Todos \
74-
-destination platform="$(PLATFORM_IOS)" \
75-
-quiet
60+
-destination platform="$(PLATFORM_IOS)"
7661
xcodebuild test \
7762
-scheme VoiceMemos \
78-
-destination platform="$(PLATFORM_IOS)" \
79-
-quiet
63+
-destination platform="$(PLATFORM_IOS)"
8064

8165
format:
8266
swift format --in-place --recursive ./Package.swift ./Sources ./Tests

0 commit comments

Comments
 (0)