Plan/scripts/runTests.sh
2018-12-19 19:24:33 +02:00

12 lines
156 B
Bash

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