Check code coverage only under node v0.12 => faster

This commit is contained in:
Tankred Hase 2016-02-02 14:41:12 +07:00
parent fbccbc9b14
commit 9a06ca2eb3
2 changed files with 8 additions and 4 deletions

View File

@ -7,7 +7,7 @@ matrix:
fast_finish: true
include:
- node_js: "0.12"
env: OPENPGPJSTEST='unit' OPENPGP_NODE_JS='0.12'
env: OPENPGPJSTEST='coverage' OPENPGP_NODE_JS='0.12'
- node_js: "4.2"
env: OPENPGPJSTEST='unit' OPENPGP_NODE_JS='4.2'
- node_js: "5"

View File

@ -2,13 +2,17 @@
set -e
if [ $OPENPGPJSTEST = "unit" ]; then
echo "Running OpenPGP.js unit-tests"
if [ $OPENPGPJSTEST = "coverage" ]; then
echo "Running OpenPGP.js unit tests on node.js with code coverage."
grunt coverage
codeclimate-test-reporter < coverage/lcov.info
elif [ $OPENPGPJSTEST = "unit" ]; then
echo "Running OpenPGP.js unit tests on node.js."
npm test
elif [[ $OPENPGPJSTEST =~ ^end2end-.* ]]; then
echo "Running browser-testing on Saucelabs"
echo "Running OpenPGP.js browser unit tests on Saucelabs."
declare -a capabilities=(
"export SELENIUM_BROWSER_CAPABILITIES='{\"browserName\":\"firefox\", \"version\":\"38.0\", \"platform\":\"Linux\"}'"