diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-11-02 16:50:56 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-11-02 16:50:56 +0100 |
commit | 1922918416e78206d5fe8caf0cce8f8562e75927 (patch) | |
tree | 60a7429d3c9cdf6bec61f03c50ff177b7bac7bfb /travis.sh | |
parent | 8a071482e332d72ad2ade93c163471cc941d1676 (diff) | |
parent | 7385970516b1c985313519ac4bd066f68015e74b (diff) | |
download | sonarqube-1922918416e78206d5fe8caf0cce8f8562e75927.tar.gz sonarqube-1922918416e78206d5fe8caf0cce8f8562e75927.zip |
Merge pull request #609 from SonarSource/feature/coveralls
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 12e6ad9d772..c4242b582bb 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) |