Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ branches:
- master
language: objective-c
os: osx
osx_image: xcode7.1
osx_image: xcode7.2
env:
global:
- LC_CTYPE=en_US.UTF-8
Expand All @@ -26,7 +26,7 @@ install:
script:
- bundle exec rake test:$TEST_TYPE
after_success:
- |
- |
if [ "$TEST_TYPE" = "ios" ] || [ "$TEST_TYPE" = "osx" ]; then
bash <(curl -s https://codecov.io/bash)
fi
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ namespace :test do
t.scheme = scheme
t.configuration = 'Debug'
t.sdk = 'iphonesimulator'
t.destinations = ['"platform=iOS Simulator,name=iPhone 6s"']

t.actions = [XCTask::BuildAction::CLEAN, XCTask::BuildAction::BUILD]
t.formatter = XCTask::BuildFormatter::XCPRETTY
Expand Down Expand Up @@ -371,7 +372,7 @@ namespace :test do

t.scheme = scheme
t.configuration = 'Debug'
t.destinations = ["\"platform=iOS Simulator,OS=9.1,name=iPhone 6s\"",]
t.destinations = ["\"platform=iOS Simulator,name=iPhone 6s\"",]

t.actions = [XCTask::BuildAction::CLEAN, XCTask::BuildAction::BUILD]
t.formatter = XCTask::BuildFormatter::XCPRETTY
Expand Down