diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-09-30 21:03:33 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-09-30 21:03:33 +0200 |
commit | 7385970516b1c985313519ac4bd066f68015e74b (patch) | |
tree | 82ef196913d7212d3928d2219d53e3cd1f21c315 /travis.sh | |
parent | 6a12161c08b45a6032f748065f02221823bbea70 (diff) | |
download | sonarqube-7385970516b1c985313519ac4bd066f68015e74b.tar.gz sonarqube-7385970516b1c985313519ac4bd066f68015e74b.zip |
send coverage report to coveralls
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh index 36081781f97..7b1f625a7fe 100755 --- a/travis.sh +++ b/travis.sh @@ -36,7 +36,9 @@ MYSQL) WEB) set +eu source ~/.nvm/nvm.sh && nvm install 4 - cd server/sonar-web && npm install && npm test + cd server/sonar-web && npm install && npm run coverage + npm install coveralls + cat target/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js ;; PRANALYSIS) |