File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,7 @@ before_install:
25
25
- brew update
26
26
- brew outdated carthage || brew upgrade carthage
27
27
script :
28
+ # Workaround for Xcode 10.2/tvOS 9.1 bug
29
+ # See https://stackoverflow.com/questions/55389080/xcode-10-2-failed-to-run-app-on-simulator-with-ios-10
30
+ - sudo mkdir /Library/Developer/CoreSimulator/Profiles/Runtimes/tvOS\ 9.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift
28
31
- ./run-tests.sh
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.11.4 </string >
18
+ <string >0.11.6 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change
1
+ XCPRETTY := $(shell command -v xcpretty)
2
+
1
3
test : install repo_update
2
4
@set -e; \
3
5
for test in * _test.rb; do \
4
- bundle exec ./$$ test; \
6
+ bundle exec ./$$ test | $( XCPRETTY ) -C ; \
5
7
done
6
8
7
9
repo_update :
You can’t perform that action at this time.
0 commit comments