forked from mgrebenets/MixAndMatchTests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslather.sh
More file actions
executable file
·29 lines (26 loc) · 722 Bytes
/
Copy pathslather.sh
File metadata and controls
executable file
·29 lines (26 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
SCHEME=MixAndMatchTests
PROJECT=${SCHEME}.xcodeproj
# Cobertura
bundle exec slather coverage \
--input-format profdata \
--cobertura-xml \
--ignore "../**/*/Xcode*" \
--output-directory slather-report \
--scheme ${SCHEME} \
${PROJECT}
# Simple
bundle exec slather coverage \
--input-format profdata \
--simple-output \
--ignore "../**/*/Xcode*" \
--output-directory slather-report \
--scheme ${SCHEME} \
${PROJECT}
# HTML option is broken at the time of trying this
# bundle exec slather coverage \
# --input-format profdata \
# --html \
# --ignore "../**/*/Xcode*" \
# --output-directory slather-html-report \
# --scheme ${SCHEME} \
# ${PROJECT}