From 61ef1f652b818f5525da04fc974d11f9afd2eff8 Mon Sep 17 00:00:00 2001 From: Oliver Letterer Date: Tue, 21 May 2013 12:25:57 +0200 Subject: [PATCH] Now running all tests in Release configuration instead of Debug. --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index df32ced..d8cc621 100644 --- a/Rakefile +++ b/Rakefile @@ -1,12 +1,12 @@ namespace :test do desc "Run the AFNetworking Tests for iOS" task :ios do - $ios_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'iOS Tests' test -test-sdk iphonesimulator") + $ios_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'iOS Tests' test -test-sdk iphonesimulator -configuration Release") end desc "Run the AFNetworking Tests for Mac OS X" task :osx do - $osx_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'OS X Tests' test -test-sdk macosx -sdk macosx") + $osx_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'OS X Tests' test -test-sdk macosx -sdk macosx -configuration Release") end end