Skip to content

Commit 61ef1f6

Browse files
Now running all tests in Release configuration instead of Debug.
1 parent efb36aa commit 61ef1f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
namespace :test do
22
desc "Run the AFNetworking Tests for iOS"
33
task :ios do
4-
$ios_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'iOS Tests' test -test-sdk iphonesimulator")
4+
$ios_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'iOS Tests' test -test-sdk iphonesimulator -configuration Release")
55
end
66

77
desc "Run the AFNetworking Tests for Mac OS X"
88
task :osx do
9-
$osx_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'OS X Tests' test -test-sdk macosx -sdk macosx")
9+
$osx_success = system("xctool -workspace AFNetworking.xcworkspace -scheme 'OS X Tests' test -test-sdk macosx -sdk macosx -configuration Release")
1010
end
1111
end
1212

0 commit comments

Comments
 (0)