We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb36aa commit 61ef1f6Copy full SHA for 61ef1f6
Rakefile
@@ -1,12 +1,12 @@
1
namespace :test do
2
desc "Run the AFNetworking Tests for iOS"
3
task :ios do
4
- $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")
5
end
6
7
desc "Run the AFNetworking Tests for Mac OS X"
8
task :osx do
9
- $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")
10
11
12
0 commit comments