Created
February 13, 2015 22:37
-
-
Save alexargo/245d09f2dc527053d5df to your computer and use it in GitHub Desktop.
frankencoverit coverage scripts attempts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Cleanup old stuff | |
rm -rf build | |
rm -rf DerivedData | |
# First Run Tests | |
xcodebuild -scheme Common -configuration Debug -destination 'platform=iOS Simulator,name=iPhone 5s,OS=8.1' clean test | /usr/bin/xcpretty -c --report junit | |
# Now Produce Test Coverage Report | |
groovy http://frankencover.it/with -source-dir "${PWD}/Common" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Cleanup old stuff | |
rm -rf build | |
rm -rf DerivedData | |
# First Run Tests | |
xcodebuild -scheme Common -derivedDataPath DerivedData -configuration Debug -destination 'platform=iOS Simulator,name=iPhone 5s,OS=8.1' clean test | /usr/bin/xcpretty -c --report junit | |
# Now Produce Test Coverage Report | |
groovy http://frankencover.it/with -source-dir "${PWD}/Common" -products-dir "${PWD}/DerivedData" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment