KCR29: travis-ci: should only submit coverage report from Travis-CI

This commit is contained in:
Paul Campbell 2017-05-29 11:45:55 +01:00
parent 9d2895269d
commit 4a4da15d4f

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
./mvnw --projects builder,plugin test jacoco:report coveralls:report if [ "$TRAVIS" = "true" ];then
./mvnw --projects builder,plugin test jacoco:report coveralls:report
fi