From abf594431652a81d80f916618caa8446969fc86d Mon Sep 17 00:00:00 2001 From: Mark Hindess Date: Tue, 1 Jul 2014 14:29:05 +0100 Subject: [PATCH] Report coverage to build log and coveralls. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1cb77776e..706c602ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ node_js: - "0.10" - "0.8" script: - - istanbul cover ./node_modules/.bin/grunt + - istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf coverage before_script: - npm install -g istanbul + - npm install coveralls