Plan/scripts/runTests.sh

11 lines
162 B
Bash

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