We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b756a9a commit 5bc102fCopy full SHA for 5bc102f
1 file changed
Rakefile
@@ -8,12 +8,12 @@ task :default => [:clean, :test]
8
9
desc "clean"
10
task :clean do
11
- sh "xcodebuild clean -workspace #{WORKSPASE} -scheme #{SCHEME}"
+ sh "xcodebuild clean -workspace #{WORKSPASE} -scheme #{SCHEME} | xcpretty -c"
12
end
13
14
desc "run unit tests"
15
task :test do
16
DESTINATIONS.each do |destination|
17
- sh "xcodebuild test -sdk iphonesimulator -workspace #{WORKSPASE} -scheme #{SCHEME} -configuration Debug -destination \"#{destination}\""
+ sh "xcodebuild test -sdk iphonesimulator -workspace #{WORKSPASE} -scheme #{SCHEME} -configuration Debug -destination \"#{destination}\" | xcpretty -c"
18
19
0 commit comments