Make cobertura and coveralls build faster. #1176

`cobertura:check` is used instead of `verify` with exclusions. This ensures that only things needed to perform coverage verification are executed.
This commit is contained in:
Michal Kordas 2015-06-05 18:57:03 +02:00 committed by Roman Ivanov
parent d8cd0ea0a1
commit 0a5c414f18
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ matrix:
env: DESC="checkstyle" MAIN_ARGS="verify -DskipTests -Dpmd.skip=true -Dfindbugs.skip=true -Dcobertura.skip=true" COVERALLS_ARGS=""
# cobertura and coveralls (oraclejdk8)
- jdk: oraclejdk8
env: DESC="cobertura and coveralls" MAIN_ARGS="verify -Dpmd.skip=true -Dfindbugs.skip=true -Dcheckstyle.ant.skip=true" COVERALLS_ARGS="mvn clean cobertura:cobertura coveralls:report"
env: DESC="cobertura and coveralls" MAIN_ARGS="cobertura:check" COVERALLS_ARGS="mvn clean cobertura:cobertura coveralls:report"
# findbugs and pmd (oraclejdk8)
- jdk: oraclejdk8
env: DESC="findbugs and pmd" MAIN_ARGS="compile pmd:check findbugs:check" COVERALLS_ARGS=""