Plan/scripts/runTests.sh
2018-12-26 21:58:06 +02:00

11 lines
176 B
Bash

cd Plan
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
gradle test --info
fi
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
gradle test --info
gradle sonarqube
fi