Plan/scripts/runTests.sh

10 lines
191 B
Bash
Raw Normal View History

cd Plan
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
mvn test
fi
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
mvn org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar
fi