Plan/scripts/runTests.sh
Rsl1122 ab3833df91 Travis configuration changes
Created bash scripts for different steps and added them as jobs for travis to execute.

Begun preparing system testing: Goal is enabling actual servers with the plugin to see if it enables
2018-11-12 15:46:41 +02:00

10 lines
191 B
Bash

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