Skip to content

Commit

Permalink
Make tvOS tests run in Travis-CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlutsenko committed Oct 28, 2015
1 parent 1ec0680 commit 17076cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ script:
elif [ "$TEST_TYPE" = OSX ]; then
set -o pipefail
xcodebuild test -project Bolts.xcodeproj -sdk macosx -scheme Bolts-OSX -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
elif [ "$TEST_TYPE" = OSX ]; then
elif [ "$TEST_TYPE" = tvOS ]; then
set -o pipefail
xcodebuild test -project Bolts.xcodeproj -scheme Bolts-tvOS -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
xcodebuild test -project Bolts.xcodeproj -sdk appletvsimulator -scheme Bolts-tvOS -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
elif [ "$TEST_TYPE" = CocoaPods ]; then
pod lib lint Bolts.podspec
pod lib lint --use-libraries Bolts.podspec
Expand Down

0 comments on commit 17076cb

Please sign in to comment.