Now running all tests in Release configuration instead of Debug.
This commit is contained in:
parent
efb36aaa99
commit
61ef1f652b
1 changed files with 2 additions and 2 deletions
4
Rakefile
4
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue